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:
parent
7f3551e958
commit
4b344fb0bd
3 changed files with 2 additions and 4 deletions
|
@ -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;
|
||||||
|
|
|
@ -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());
|
||||||
|
|
|
@ -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];
|
||||||
|
|
Loading…
Add table
Reference in a new issue