mirror of
https://github.com/2006-Scape/Parabot.git
synced 2026-07-06 16:50:39 +00:00
Testing client to automatically remove preference keys
This commit is contained in:
@@ -1,5 +1,6 @@
|
|||||||
package org.parabot;
|
package org.parabot;
|
||||||
|
|
||||||
|
import com.sun.deploy.util.WinRegistry;
|
||||||
import org.parabot.core.Configuration;
|
import org.parabot.core.Configuration;
|
||||||
import org.parabot.core.Core;
|
import org.parabot.core.Core;
|
||||||
import org.parabot.core.Directories;
|
import org.parabot.core.Directories;
|
||||||
@@ -28,8 +29,22 @@ public final class Landing {
|
|||||||
private static String username;
|
private static String username;
|
||||||
private static String password;
|
private static String password;
|
||||||
|
|
||||||
|
private static void removeKeys(){
|
||||||
|
try{
|
||||||
|
boolean value = WinRegistry.deleteKey(
|
||||||
|
WinRegistry.HKEY_CURRENT_USER,
|
||||||
|
"Software\\JavaSoft\\Prefs\\org\\parabot");
|
||||||
|
if (value) {
|
||||||
|
System.err.println("Ikov key removed");
|
||||||
|
}
|
||||||
|
}catch (Exception ignored){
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public static void main(String... args) throws IOException {
|
public static void main(String... args) throws IOException {
|
||||||
parseArgs(args);
|
parseArgs(args);
|
||||||
|
removeKeys();
|
||||||
|
|
||||||
Core.verbose("Debug mode: " + Core.inDebugMode());
|
Core.verbose("Debug mode: " + Core.inDebugMode());
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user