From ed4c5ff4a2ecdef59fbeaa5b81f5b242cedcb98a Mon Sep 17 00:00:00 2001 From: Andrew Gvozdev Date: Thu, 29 Apr 2010 18:20:13 +0000 Subject: [PATCH] compilation warnings --- .../internal/core/scannerconfig2/SCMarkerGenerator.java | 7 +++---- .../internal/core/scannerconfig2/SCProfileInstance.java | 5 +---- 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; }