src/java.base/macosx/native/libjava/java_props_macosx.c
changeset 54869 72d194129803
parent 52733 1d520c376105
child 55169 256a5cbb4439
child 58678 9cf78a70fa4f
--- a/src/java.base/macosx/native/libjava/java_props_macosx.c	Thu May 02 10:48:56 2019 -0700
+++ b/src/java.base/macosx/native/libjava/java_props_macosx.c	Fri May 03 17:06:42 2019 -0700
@@ -212,25 +212,6 @@
     }
 }
 
-int isInAquaSession() {
-    // environment variable to bypass the aqua session check
-    char *ev = getenv("AWT_FORCE_HEADFUL");
-    if (ev && (strncasecmp(ev, "true", 4) == 0)) {
-        // if "true" then tell the caller we're in an Aqua session without actually checking
-        return 1;
-    }
-    // Is the WindowServer available?
-    SecuritySessionId session_id;
-    SessionAttributeBits session_info;
-    OSStatus status = SessionGetInfo(callerSecuritySession, &session_id, &session_info);
-    if (status == noErr) {
-        if (session_info & sessionHasGraphicAccess) {
-            return 1;
-        }
-    }
-    return 0;
-}
-
 // 10.9 SDK does not include the NSOperatingSystemVersion struct.
 // For now, create our own
 typedef struct {