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:
parent
7f3551e958
commit
4b344fb0bd
3 changed files with 2 additions and 4 deletions
|
@ -48,8 +48,6 @@ public class StringCompare
|
|||
compareStr = compareStr.toUpperCase();
|
||||
}
|
||||
|
||||
String currentMatch = new String("");
|
||||
|
||||
int iText = 0;
|
||||
int iPattern = 0;
|
||||
int lastStar = 0;
|
||||
|
|
|
@ -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());
|
||||
|
|
|
@ -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];
|
||||
|
|
Loading…
Add table
Reference in a new issue