Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'xlc/org.eclipse.cdt.make.xlc.core/src/org/eclipse/cdt/make/xlc/core/activator/Activator.java')
-rw-r--r--xlc/org.eclipse.cdt.make.xlc.core/src/org/eclipse/cdt/make/xlc/core/activator/Activator.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/xlc/org.eclipse.cdt.make.xlc.core/src/org/eclipse/cdt/make/xlc/core/activator/Activator.java b/xlc/org.eclipse.cdt.make.xlc.core/src/org/eclipse/cdt/make/xlc/core/activator/Activator.java
index e76e86f2cde..bf0781bbfee 100644
--- a/xlc/org.eclipse.cdt.make.xlc.core/src/org/eclipse/cdt/make/xlc/core/activator/Activator.java
+++ b/xlc/org.eclipse.cdt.make.xlc.core/src/org/eclipse/cdt/make/xlc/core/activator/Activator.java
@@ -32,7 +32,7 @@ public class Activator extends Plugin {
*/
public Activator() {
super();
- if(fInstance == null) {
+ if (fInstance == null) {
fInstance = this;
}
}
@@ -47,8 +47,7 @@ public class Activator extends Plugin {
public static void log(String message, Throwable e) {
Throwable nestedException;
- if (e instanceof CModelException
- && (nestedException = ((CModelException)e).getException()) != null) {
+ if (e instanceof CModelException && (nestedException = ((CModelException) e).getException()) != null) {
e = nestedException;
}
log(createStatus(message, e));

Back to the top