Skip to content
This repository has been archived by the owner on Apr 20, 2021. It is now read-only.

Commit

Permalink
Fixed problem with unassigned variable in frontend.gui.components.Bro…
Browse files Browse the repository at this point in the history
…wse #1257
  • Loading branch information
skodapetr committed Feb 24, 2014
1 parent d66095f commit 3870b32
Showing 1 changed file with 10 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,12 @@
*/
public class Browse extends CustomComponent {

private VerticalLayout mainLayout;
private DataUnitSelector selector;
private PipelineExecution execution;
private final VerticalLayout mainLayout;

private final DataUnitSelector selector;

private final PipelineExecution execution;

private QueryView queryView;

/**
Expand All @@ -28,7 +31,10 @@ public class Browse extends CustomComponent {
* @param execution
*/
public Browse(PipelineExecution execution) {

// set local execution
this.execution = execution;


mainLayout = new VerticalLayout();

selector = new DataUnitSelector(execution);
Expand Down

0 comments on commit 3870b32

Please sign in to comment.