summaryrefslogtreecommitdiffstats
path: root/org.rtems.cdt/src/org/rtems/cdt/Activator.java
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2009-12-08 12:52:32 +0000
committerSebastian Huber <sebastian.huber@embedded-brains.de>2009-12-08 12:52:32 +0000
commite7c1ecb1e6de811843afaac78ad370a67b69563e (patch)
treea5fca1015e4999c507ce7b5fd662d99ca0ee53a0 /org.rtems.cdt/src/org/rtems/cdt/Activator.java
parentUpdate to version 1.4.0. (diff)
downloadrtems-eclipse-plug-in-e7c1ecb1e6de811843afaac78ad370a67b69563e.tar.bz2
2009-12-08 Sebastian Huber <sebastian.huber@embedded-brains.de>HEADmaster
* src/org/rtems/cdt/Activator.java, src/org/rtems/cdt/Constants.java, src/org/rtems/cdt/Storage.java, src/org/rtems/cdt/VolatilePreferenceStore.java, src/org/rtems/cdt/build/CommandLineGenerator.java, src/org/rtems/cdt/build/CygwinScannerInfoCollector.java, src/org/rtems/cdt/build/EnvironmentSupplier.java, src/org/rtems/cdt/build/RunScannerInfoProvider.java, src/org/rtems/cdt/preferences/PreferenceInitializer.java, src/org/rtems/cdt/preferences/PreferencePage.java, src/org/rtems/cdt/properties/PropertyPage.java, src/org/rtems/cdt/wizards/BasicSetup.java, src/org/rtems/cdt/wizards/FinishSetup.java: Replaced '( ' with '('.
Diffstat (limited to 'org.rtems.cdt/src/org/rtems/cdt/Activator.java')
-rw-r--r--org.rtems.cdt/src/org/rtems/cdt/Activator.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/org.rtems.cdt/src/org/rtems/cdt/Activator.java b/org.rtems.cdt/src/org/rtems/cdt/Activator.java
index 810e356..f9e8f35 100644
--- a/org.rtems.cdt/src/org/rtems/cdt/Activator.java
+++ b/org.rtems.cdt/src/org/rtems/cdt/Activator.java
@@ -32,15 +32,15 @@ import org.osgi.framework.BundleContext;
public class Activator extends AbstractUIPlugin {
private static Activator mPlugin;
- public void start( BundleContext context) throws Exception {
- super.start( context);
+ public void start(BundleContext context) throws Exception {
+ super.start(context);
mPlugin = this;
createBSPInfoMakefile();
}
- public void stop( BundleContext context) throws Exception {
+ public void stop(BundleContext context) throws Exception {
mPlugin = null;
- super.stop( context);
+ super.stop(context);
}
public static Activator getDefault() {
@@ -52,10 +52,10 @@ public class Activator extends AbstractUIPlugin {
}
private void createBSPInfoMakefile() {
- IPath makefile = getMakefileLocation().append( "Makefile");
+ IPath makefile = getMakefileLocation().append("Makefile");
BufferedWriter out = null;
try {
- out = new BufferedWriter( new FileWriter( makefile.toFile()));
+ out = new BufferedWriter(new FileWriter(makefile.toFile()));
out.write(
"include $(" + Constants.BSP_PATH_MAKE_VARIABLE + ")/Makefile.inc\n"
+ "include $(RTEMS_CUSTOM)\n"