1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-03 23:25:26 +02:00

[cleanup] fix some build warnings

This commit is contained in:
Martin Oberhuber 2006-08-17 09:21:56 +00:00
parent 7f3551e958
commit 4b344fb0bd
3 changed files with 2 additions and 4 deletions

View file

@ -48,8 +48,6 @@ public class StringCompare
compareStr = compareStr.toUpperCase();
}
String currentMatch = new String("");
int iText = 0;
int iPattern = 0;
int lastStar = 0;

View file

@ -224,7 +224,7 @@ public class ArchiveHandlerManager
}
catch (InvocationTargetException e)
{
Throwable target = e.getCause();
//Throwable target = e.getCause();
System.out.println(e.getMessage());
e.printStackTrace();
System.out.println("Could not instantiate handler for " + file.getName());

View file

@ -2130,7 +2130,7 @@ public class SystemZipHandler implements ISystemArchiveHandler
}
else
{
String sourceName = name;
//String sourceName = name;
HashSet children = new HashSet();
listAllFiles(file, children);
File[] sources = new File[children.size() + 1];