Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Gvozdev2010-04-29 18:20:13 +0000
committerAndrew Gvozdev2010-04-29 18:20:13 +0000
commited4c5ff4a2ecdef59fbeaa5b81f5b242cedcb98a (patch)
tree2ba6b1e29dd91955199a8441ddc8287e4803fbc1 /build/org.eclipse.cdt.make.core
parente473a12211bbb99e993e1ef13be1bc7e9cfc28a7 (diff)
downloadorg.eclipse.cdt-ed4c5ff4a2ecdef59fbeaa5b81f5b242cedcb98a.tar.gz
org.eclipse.cdt-ed4c5ff4a2ecdef59fbeaa5b81f5b242cedcb98a.tar.xz
org.eclipse.cdt-ed4c5ff4a2ecdef59fbeaa5b81f5b242cedcb98a.zip
compilation warnings
Diffstat (limited to 'build/org.eclipse.cdt.make.core')
-rw-r--r--build/org.eclipse.cdt.make.core/src/org/eclipse/cdt/make/internal/core/scannerconfig2/SCMarkerGenerator.java7
-rw-r--r--build/org.eclipse.cdt.make.core/src/org/eclipse/cdt/make/internal/core/scannerconfig2/SCProfileInstance.java5
2 files changed, 4 insertions, 8 deletions
diff --git a/build/org.eclipse.cdt.make.core/src/org/eclipse/cdt/make/internal/core/scannerconfig2/SCMarkerGenerator.java b/build/org.eclipse.cdt.make.core/src/org/eclipse/cdt/make/internal/core/scannerconfig2/SCMarkerGenerator.java
index 1982c4b67c7..43325ab7db3 100644
--- a/build/org.eclipse.cdt.make.core/src/org/eclipse/cdt/make/internal/core/scannerconfig2/SCMarkerGenerator.java
+++ b/build/org.eclipse.cdt.make.core/src/org/eclipse/cdt/make/internal/core/scannerconfig2/SCMarkerGenerator.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2004, 2009 IBM Corporation and others.
+ * Copyright (c) 2004, 2010 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -13,7 +13,6 @@ package org.eclipse.cdt.make.internal.core.scannerconfig2;
import java.util.ArrayList;
import java.util.List;
-import org.eclipse.cdt.core.CCorePlugin;
import org.eclipse.cdt.core.IMarkerGenerator;
import org.eclipse.cdt.core.ProblemMarkerInfo;
import org.eclipse.cdt.core.model.ICModelMarker;
@@ -108,7 +107,7 @@ public class SCMarkerGenerator implements IMarkerGenerator {
}
catch (CoreException e) {
- CCorePlugin.log(e.getStatus());
+ MakeCorePlugin.log(e.getStatus());
}
}
@@ -137,7 +136,7 @@ public class SCMarkerGenerator implements IMarkerGenerator {
}
}
catch (CoreException e) {
- CCorePlugin.log(e.getStatus());
+ MakeCorePlugin.log(e.getStatus());
}
}
diff --git a/build/org.eclipse.cdt.make.core/src/org/eclipse/cdt/make/internal/core/scannerconfig2/SCProfileInstance.java b/build/org.eclipse.cdt.make.core/src/org/eclipse/cdt/make/internal/core/scannerconfig2/SCProfileInstance.java
index c1e0ac2aa5e..886974ed122 100644
--- a/build/org.eclipse.cdt.make.core/src/org/eclipse/cdt/make/internal/core/scannerconfig2/SCProfileInstance.java
+++ b/build/org.eclipse.cdt.make.core/src/org/eclipse/cdt/make/internal/core/scannerconfig2/SCProfileInstance.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2004, 2007 IBM Corporation and others.
+ * Copyright (c) 2004, 2010 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -92,9 +92,6 @@ public class SCProfileInstance {
// all other objects are created on request
}
- /**
- * @return
- */
public ScannerConfigProfile getProfile() {
return profile;
}

Back to the top