summaryrefslogtreecommitdiffstats
path: root/org.rtems.cdt/src/org/rtems/cdt/preferences/PreferencePage.java
diff options
context:
space:
mode:
Diffstat (limited to 'org.rtems.cdt/src/org/rtems/cdt/preferences/PreferencePage.java')
-rw-r--r--org.rtems.cdt/src/org/rtems/cdt/preferences/PreferencePage.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/org.rtems.cdt/src/org/rtems/cdt/preferences/PreferencePage.java b/org.rtems.cdt/src/org/rtems/cdt/preferences/PreferencePage.java
index a82f7e4..1169041 100644
--- a/org.rtems.cdt/src/org/rtems/cdt/preferences/PreferencePage.java
+++ b/org.rtems.cdt/src/org/rtems/cdt/preferences/PreferencePage.java
@@ -35,9 +35,9 @@ public class PreferencePage
extends FieldEditorPreferencePage
implements IWorkbenchPreferencePage {
public PreferencePage() {
- super( GRID);
- setPreferenceStore( Activator.getDefault().getPreferenceStore());
- setDescription( "Select the RTEMS base installation path and the board support package (BSP) installation path. This provides the default values for all projects. Existing projects are not affected by changes made here.");
+ super(GRID);
+ setPreferenceStore(Activator.getDefault().getPreferenceStore());
+ setDescription("Select the RTEMS base installation path and the board support package (BSP) installation path. This provides the default values for all projects. Existing projects are not affected by changes made here.");
}
public void createFieldEditors() {
@@ -55,7 +55,7 @@ public class PreferencePage
getFieldEditorParent()
)
);
- if (Platform.getOS().equals( Platform.OS_WIN32)) {
+ if (Platform.getOS().equals(Platform.OS_WIN32)) {
addField(
new DirectoryFieldEditor(
Constants.CYGWIN_PATH_KEY,
@@ -87,7 +87,7 @@ public class PreferencePage
);
}
- public void init( IWorkbench workbench) {
+ public void init(IWorkbench workbench) {
// Do nothing
}
}