1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-19 14:15:50 +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(); compareStr = compareStr.toUpperCase();
} }
String currentMatch = new String("");
int iText = 0; int iText = 0;
int iPattern = 0; int iPattern = 0;
int lastStar = 0; int lastStar = 0;

View file

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

View file

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