1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 14:42:11 +02:00

compilation warnings

This commit is contained in:
Andrew Gvozdev 2010-04-29 18:20:13 +00:00
parent e473a12211
commit ed4c5ff4a2
2 changed files with 4 additions and 8 deletions

View file

@ -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());
}
}

View file

@ -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;
}