|
11 | 11 | import java.net.URL;
|
12 | 12 |
|
13 | 13 | public class Signlink implements Runnable {
|
14 |
| - public static Method aMethod724; |
| 14 | + public static Method setFocusCycleRoot; |
15 | 15 | private static String homeDirectory;
|
16 |
| - public static Method aMethod729; |
| 16 | + public static Method setFocusTraversalKeysEnabled; |
17 | 17 | public static String javaVendor;
|
18 | 18 | public static int anInt737 = 3;
|
19 | 19 | public static String javaVersion;
|
@@ -47,17 +47,17 @@ public Signlink(boolean loadCache, GameShell gameShell, InetAddress netAddress,
|
47 | 47 | }
|
48 | 48 | try {
|
49 | 49 | if(gameShell == null)
|
50 |
| - aMethod729 = Class.forName("java.awt.Component").getDeclaredMethod("setFocusTraversalKeysEnabled", Boolean.TYPE); |
| 50 | + setFocusTraversalKeysEnabled = Class.forName("java.awt.Component").getDeclaredMethod("setFocusTraversalKeysEnabled", Boolean.TYPE); |
51 | 51 | else
|
52 |
| - aMethod729 = gameShell.getClass().getMethod("setFocusTraversalKeysEnabled", Boolean.TYPE); |
| 52 | + setFocusTraversalKeysEnabled = gameShell.getClass().getMethod("setFocusTraversalKeysEnabled", Boolean.TYPE); |
53 | 53 | } catch(Exception exception) {
|
54 | 54 | /* empty */
|
55 | 55 | }
|
56 | 56 | try {
|
57 | 57 | if(gameShell != null)
|
58 |
| - aMethod724 = gameShell.getClass().getMethod("setFocusCycleRoot", Boolean.TYPE); |
| 58 | + setFocusCycleRoot = gameShell.getClass().getMethod("setFocusCycleRoot", Boolean.TYPE); |
59 | 59 | else
|
60 |
| - aMethod724 = Class.forName("java.awt.Container").getDeclaredMethod("setFocusCycleRoot", Boolean.TYPE); |
| 60 | + setFocusCycleRoot = Class.forName("java.awt.Container").getDeclaredMethod("setFocusCycleRoot", Boolean.TYPE); |
61 | 61 | } catch(Exception exception) {
|
62 | 62 | /* empty */
|
63 | 63 | }
|
|
0 commit comments