* Fixes after review:

- Fix Polish po file
    - Install as a service by default on Windows again
    - Change CPUID getters to package private
    - Split new jbigi install messages into two lines
    - Javadocs
This commit is contained in:
zzz
2011-06-26 19:07:01 +00:00
parent 4ec4013a44
commit 2f10cca40f
24 changed files with 155 additions and 81 deletions

View File

@ -1267,9 +1267,11 @@ public class Router {
boolean success = FileUtil.copy(path, path + ".bak", true, true);
if (success) {
boolean success2 = jcpuidLib.delete();
if (success2)
if (success2) {
System.out.println("New jbigi.jar detected, moved jcpuid library to " +
path + ".bak, check logs for successful installation of new library");
path + ".bak");
System.out.println("Check logs for successful installation of new library");
}
}
}
@ -1279,9 +1281,11 @@ public class Router {
boolean success = FileUtil.copy(path, path + ".bak", true, true);
if (success) {
boolean success2 = jbigiLib.delete();
if (success2)
if (success2) {
System.out.println("New jbigi.jar detected, moved jbigi library to " +
path + ".bak, check logs for successful installation of new library");
path + ".bak");
System.out.println("Check logs for successful installation of new library");
}
}
}
}