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 2011-02-16 22:20:07 +00:00
parent 676444cbbe
commit d0e417a050
3 changed files with 0 additions and 4 deletions

View file

@ -464,7 +464,6 @@ public class BuildInfoFactory {
throw new CoreException(new Status(IStatus.ERROR, MakeCorePlugin.getUniqueIdentifier(), -1,
MakeMessages.getString("BuildInfoFactory.Missing_Builder") + builderID, null)); //$NON-NLS-1$
}
@SuppressWarnings("unchecked")
Map<String, String> builderArgs = builder.getArguments();
args = builderArgs;
}

View file

@ -306,7 +306,6 @@ public class ScannerConfigInfoFactory {
MakeMessages.getString("ScannerConfigInfoFactory.Missing_Builder")//$NON-NLS-1$
+ builderID, null));
}
@SuppressWarnings("unchecked")
Map<String,String> bArgs = builder.getArguments();
args = bArgs;
}

View file

@ -266,7 +266,6 @@ public class BuilderFactory {
return new Builder(cfg.getToolChain(), subId, subName, (Builder)base);
}
@SuppressWarnings("unchecked")
public static IBuilder createBuilderFromCommand(IConfiguration cfg, ICommand command){
Map<String, String> args = command.getArguments();
if(!args.containsKey(IBuilder.ID)){
@ -436,7 +435,6 @@ public class BuilderFactory {
return NO_CHANGES;
}
@SuppressWarnings("unchecked")
public static boolean applyBuilder(ICommand cmd, IBuilder builder) {
Map<String, String> oldMap = cmd.getArguments();
Map<String, String> map = builderBuildArgsMap(builder);