Skip to content
Snippets Groups Projects
Commit 38e88ca3 authored by tpylak's avatar tpylak
Browse files

LMS-749 minor: add private and final modifiers

SVN: 9762
parent e4e2e5c3
No related branches found
No related tags found
No related merge requests found
......@@ -38,7 +38,7 @@ public class CriteriaWidget extends VerticalPanel
{
private final List<CriterionWidget> criteriaWidgets;
private MatchCriteriaRadio matchRadios;
private final MatchCriteriaRadio matchRadios;
public CriteriaWidget(IViewContext<ICommonClientServiceAsync> viewContext)
{
......
......@@ -38,15 +38,15 @@ public class CriterionWidget extends HorizontalPanel
private final CriteriaWidget parent;
private DataSetSearchFieldsSelectionWidget nameField;
private final DataSetSearchFieldsSelectionWidget nameField;
private final String idSuffix;
private int generatedChildren;
private final TextField<String> valueField;
private TextField<String> valueField;
private final Button removeButton;
private Button removeButton;
private int generatedChildren;
public CriterionWidget(IViewContext<ICommonClientServiceAsync> viewContext,
CriteriaWidget parent, String idSuffix)
......@@ -102,7 +102,7 @@ public class CriterionWidget extends HorizontalPanel
};
}
String getChildId()
private String getChildId()
{
return idSuffix + "_" + generatedChildren;
}
......
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