1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-16 13:35:22 +02:00

trivial fix: fix for x = x = "something"

This commit is contained in:
David McKnight 2008-02-11 19:01:53 +00:00
parent 4c642f694d
commit ddcaee1294

View file

@ -173,7 +173,7 @@ public class UniversalSearchHandler extends Thread implements ICancellableHandle
// is it an archive? // is it an archive?
boolean isArchive = ArchiveHandlerManager.getInstance().isArchive(theFile); boolean isArchive = ArchiveHandlerManager.getInstance().isArchive(theFile);
String absPath = absPath = theFile.getAbsolutePath(); String absPath = theFile.getAbsolutePath();
String compareStr = theFile.getName(); String compareStr = theFile.getName();