Skip to content

Commit ee4f70d

Browse files
eclipse-platform-botakurtakov
authored andcommitted
Perform clean code of bundles/org.eclipse.jface
1 parent bba1bf9 commit ee4f70d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

bundles/org.eclipse.jface/src/org/eclipse/jface/dialogs/DialogSettings.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,14 +79,14 @@ public class DialogSettings implements IDialogSettings {
7979

8080
/* A Map of DialogSettings representing each sections in a DialogSettings.
8181
It maps the DialogSettings' name to the DialogSettings */
82-
private Map<String, IDialogSettings> sections;
82+
private final Map<String, IDialogSettings> sections;
8383

8484
/* A Map with all the keys and values of this sections.
8585
Either the keys an values are restricted to strings. */
86-
private Map<String, String> items;
86+
private final Map<String, String> items;
8787

8888
// A Map with all the keys mapped to array of strings.
89-
private Map<String, String[]> arrayItems;
89+
private final Map<String, String[]> arrayItems;
9090

9191
private static final String TAG_SECTION = "section";//$NON-NLS-1$
9292

0 commit comments

Comments
 (0)