mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-03 23:25:26 +02:00
trivial fix: fix for x = x = "something"
This commit is contained in:
parent
4c642f694d
commit
ddcaee1294
1 changed files with 1 additions and 1 deletions
|
@ -173,7 +173,7 @@ public class UniversalSearchHandler extends Thread implements ICancellableHandle
|
|||
// is it an archive?
|
||||
boolean isArchive = ArchiveHandlerManager.getInstance().isArchive(theFile);
|
||||
|
||||
String absPath = absPath = theFile.getAbsolutePath();
|
||||
String absPath = theFile.getAbsolutePath();
|
||||
|
||||
|
||||
String compareStr = theFile.getName();
|
||||
|
|
Loading…
Add table
Reference in a new issue