summaryrefslogtreecommitdiff
path: root/jvmfwk/plugins/sunmajor/pluginlib/util_cocoa.mm
diff options
context:
space:
mode:
Diffstat (limited to 'jvmfwk/plugins/sunmajor/pluginlib/util_cocoa.mm')
-rw-r--r--jvmfwk/plugins/sunmajor/pluginlib/util_cocoa.mm8
1 files changed, 4 insertions, 4 deletions
diff --git a/jvmfwk/plugins/sunmajor/pluginlib/util_cocoa.mm b/jvmfwk/plugins/sunmajor/pluginlib/util_cocoa.mm
index 5a5d7303a18a..136518253cde 100644
--- a/jvmfwk/plugins/sunmajor/pluginlib/util_cocoa.mm
+++ b/jvmfwk/plugins/sunmajor/pluginlib/util_cocoa.mm
@@ -24,8 +24,8 @@ bool JvmfwkUtil_isLoadableJVM( OUString const & aURL )
NSURL *pURL = nil;
// Ignore all but Oracle's JDK as loading Apple's Java and Oracle's
- // JRE will cause OS X's JavaVM framework to display a dialog and
- // invoke exit() when loaded via JNI on OS X 10.10
+ // JRE will cause macOS's JavaVM framework to display a dialog and
+ // invoke exit() when loaded via JNI on macOS 10.10
NSURL *pTmpURL = [NSURL URLWithString:pString];
if ( pTmpURL )
pTmpURL = [pTmpURL filePathURL];
@@ -69,9 +69,9 @@ bool JvmfwkUtil_isLoadableJVM( OUString const & aURL )
// Make sure that this bundle's Info.plist has the
// proper JVM keys to supports loading via JNI. If
// this bundle is a valid JVM and these keys
- // are missing, loading the JVM will cause OS X's
+ // are missing, loading the JVM will cause macOS's
// JavaVM framework to display a dialog and invoke
- // exit() when loaded via JNI on OS X 10.10.
+ // exit() when loaded via JNI on macOS 10.10.
NSDictionary *pInfo = [pBundle infoDictionary];
if ( pInfo )
{