Skip to content
Snippets Groups Projects
Commit 3b21ccb2 authored by cramakri's avatar cramakri
Browse files

MINOR : Fix warnings

SVN: 26312
parent fa2002ac
No related branches found
No related tags found
No related merge requests found
......@@ -38,7 +38,7 @@ public class ReportGeneratedCallback extends AbstractAsyncCallback<TableModelRef
void execute(final IDisposableComponent reportComponent);
}
private final IViewContext<ICommonClientServiceAsync> viewContext;
private final IViewContext<ICommonClientServiceAsync> localViewContext;
private final IOnReportComponentGeneratedAction action;
......@@ -58,7 +58,7 @@ public class ReportGeneratedCallback extends AbstractAsyncCallback<TableModelRef
IOnReportComponentGeneratedAction action)
{
super(viewContext);
this.viewContext = viewContext;
this.localViewContext = viewContext;
this.reportInformationProvider = reportInformationProvider;
this.action = action;
}
......@@ -67,7 +67,7 @@ public class ReportGeneratedCallback extends AbstractAsyncCallback<TableModelRef
protected void process(final TableModelReference tableModelReference)
{
final IDisposableComponent reportComponent =
ReportGrid.create(viewContext, tableModelReference, reportInformationProvider);
ReportGrid.create(localViewContext, tableModelReference, reportInformationProvider);
action.execute(reportComponent);
if (StringUtils.isBlank(tableModelReference.tryGetMessage()) == false)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment