diff options
Diffstat (limited to 'make/joal-alextabstract-CustomJavaCode.java')
-rw-r--r-- | make/joal-alextabstract-CustomJavaCode.java | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/make/joal-alextabstract-CustomJavaCode.java b/make/joal-alextabstract-CustomJavaCode.java deleted file mode 100644 index e467fc7..0000000 --- a/make/joal-alextabstract-CustomJavaCode.java +++ /dev/null @@ -1,16 +0,0 @@ -private static final ALExtProcAddressTable alExtProcAddressTable; - -static { - alExtProcAddressTable = AccessController.doPrivileged(new PrivilegedAction<ALExtProcAddressTable>() { - public ALExtProcAddressTable run() { - final ALExtProcAddressTable alExtProcAddressTable = new ALExtProcAddressTable(); - if(null==alExtProcAddressTable) { - throw new RuntimeException("Couldn't instantiate ALExtProcAddressTable"); - } - alExtProcAddressTable.reset(ALImpl.alDynamicLookupHelper); - return alExtProcAddressTable; - } } ); -} - -public static ALExtProcAddressTable getALExtProcAddressTable() { return alExtProcAddressTable; } - |