aboutsummaryrefslogtreecommitdiffstats
path: root/make/config/joal-al-CustomJavaCode.java
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2023-07-09 14:50:30 +0200
committerSven Gothel <[email protected]>2023-07-09 14:50:30 +0200
commitf0ac928d212f74a2a422af2e89ec930c7b42e224 (patch)
tree0111541d61e1a4918eb671e29d5ef44169f6d40f /make/config/joal-al-CustomJavaCode.java
parent4d82343dd856cb880b8d8ed9a6616eb1832d49dc (diff)
Use GlueGen's SecurityUtil.doPrivileged(..) instead of AccessController, remove dead code
Diffstat (limited to 'make/config/joal-al-CustomJavaCode.java')
-rw-r--r--make/config/joal-al-CustomJavaCode.java5
1 files changed, 1 insertions, 4 deletions
diff --git a/make/config/joal-al-CustomJavaCode.java b/make/config/joal-al-CustomJavaCode.java
index 312a23d..9439a48 100644
--- a/make/config/joal-al-CustomJavaCode.java
+++ b/make/config/joal-al-CustomJavaCode.java
@@ -7,12 +7,9 @@ static {
throw new RuntimeException("Couldn't instantiate ALProcAddressTable");
}
- alDynamicLookupHelper = AccessController.doPrivileged(new PrivilegedAction<DynamicLibraryBundle>() {
+ alDynamicLookupHelper = SecurityUtil.doPrivileged(new PrivilegedAction<DynamicLibraryBundle>() {
public DynamicLibraryBundle run() {
final DynamicLibraryBundle bundle = new DynamicLibraryBundle(new ALDynamicLibraryBundleInfo());
- if(null==bundle) {
- throw new RuntimeException("Null ALDynamicLookupHelper");
- }
if(!bundle.isToolLibLoaded()) {
throw new RuntimeException("Couln't load native AL library");
}