diff --git a/bundles/org.eclipse.jface/src/org/eclipse/jface/dialogs/DialogSettings.java b/bundles/org.eclipse.jface/src/org/eclipse/jface/dialogs/DialogSettings.java index 0cb8279118e..84189a165eb 100644 --- a/bundles/org.eclipse.jface/src/org/eclipse/jface/dialogs/DialogSettings.java +++ b/bundles/org.eclipse.jface/src/org/eclipse/jface/dialogs/DialogSettings.java @@ -79,14 +79,14 @@ public class DialogSettings implements IDialogSettings { /* A Map of DialogSettings representing each sections in a DialogSettings. It maps the DialogSettings' name to the DialogSettings */ - private Map sections; + private final Map sections; /* A Map with all the keys and values of this sections. Either the keys an values are restricted to strings. */ - private Map items; + private final Map items; // A Map with all the keys mapped to array of strings. - private Map arrayItems; + private final Map arrayItems; private static final String TAG_SECTION = "section";//$NON-NLS-1$