-
syntax do not check twice
if (globals.settings.getProperty("SHA").equalsIgnoreCase("true")){
SHACheckBox.setSelected(true);
}else{
SHACheckBox.setSelected(false);
}
can you write as
SHACheckBox.setSelected(globals.settings.getProperty("SHA").equalsIgnoreCase("true"));
is faster.
2009-12-20 21:51:56 UTC by java_php_dev
-
rafalfr made 4 file-release changes.
2009-11-30 19:21:01 UTC by rafalfr
-
rafalfr made 5 file-release changes.
2009-11-30 19:19:01 UTC by rafalfr
-
rafalfr made 3 file-release changes.
2009-11-30 19:18:01 UTC by rafalfr
-
ctsai changed the public information on the Duplicate Files Searcher project.
2009-11-23 14:50:25 UTC by ctsai
-
one problem on os x, and i think also on other unix based system, is that the program think that a link to a file is a duplicate of the file itself. a simple check can avoid deleting the original file.
2009-08-15 10:55:53 UTC by nobody