+ a "!" in Log-Details-View now indicates whether a file is still existing or not
+ committed additional files
This commit is contained in:
parent
99e0d89ce3
commit
476a526fcc
@ -203,7 +203,7 @@ public class JUninstaller extends Frame implements ActionListener {
|
||||
} else if (ae.getSource().equals(btDetails)) { // Details of log-entry
|
||||
String selItem = ltView.getSelectedItem();
|
||||
if (selItem != null) {
|
||||
String mbt = selItem.substring(2);
|
||||
String mbt = selItem.substring(selItem.indexOf(" ")+1);
|
||||
File flDet = new File(mbt);
|
||||
if (flDet.exists()) {
|
||||
mbt += "\n\nSize: "+flDet.length()+" Bytes";
|
||||
|
@ -329,7 +329,13 @@ public class MyFilesystemParser {
|
||||
tmp[i] = result[i];
|
||||
}
|
||||
tab = ln.indexOf("\t");
|
||||
tmp[tmp.length-1] = ln.substring(0, tab)+" "+ln.substring(tab+1, ln.indexOf("\t", tab+1));
|
||||
String fn = ln.substring(tab+1, ln.indexOf("\t", tab+1));
|
||||
File fl = new File(fn);
|
||||
String status = ln.substring(0, tab);
|
||||
if (!fl.exists()) {
|
||||
status += "!";
|
||||
}
|
||||
tmp[tmp.length-1] = status+" "+fn;
|
||||
result = tmp;
|
||||
ln = in.readLine();
|
||||
}
|
||||
|
BIN
add/!/system/Java/ext/Util.jar
Normal file
BIN
add/!/system/Java/ext/Util.jar
Normal file
Binary file not shown.
BIN
add/!/system/Libs/TaskSwitch1.dll
Normal file
BIN
add/!/system/Libs/TaskSwitch1.dll
Normal file
Binary file not shown.
Reference in New Issue
Block a user