Skip to content

Commit d299693

Browse files
committed
mac os x -> macOS
1 parent 2d1aaa1 commit d299693

File tree

11 files changed

+12
-12
lines changed

11 files changed

+12
-12
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
OpenIDE-Module-Display-Category=Tools
22
OpenIDE-Module-Long-Description=\
33
Allows to minimize/restore running VisualVM instance into/from system tray. \
4-
Not supported on Mac OS X (does nothing).
4+
Not supported on macOS (does nothing).
55
OpenIDE-Module-Name=SysTray
66
OpenIDE-Module-Short-Description=Allows to minimize running VisualVM instance into system tray.

visualvm/application/src/org/graalvm/visualvm/application/type/Bundle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ LBL_Unknown=<Unknown>
4141

4242
DESCR_VisualVMApplicationType=VisualVM is a visual tool integrating several commandline JDK tools and lightweight profiling capabilities.
4343
DESCR_NetBeansBasedApplicationType=Java application built on top of the NetBeans Platform.
44-
DESCR_NetBeansApplicationType=NetBeans IDE: The only IDE you need! Runs on Windows, Linux, Mac OS X and Solaris. NetBeans IDE is open-source and free.
44+
DESCR_NetBeansApplicationType=NetBeans IDE: The only IDE you need! Runs on Windows, Linux, macOS and Solaris. NetBeans IDE is open-source and free.
4545
DESCR_JDeveloperApplicationType=Oracle JDeveloper is a free integrated development environment that simplifies the development of Java-based SOA applications and user interfaces with support for the full development life cycle.
4646
DESCR_IntelliJPlatformApplicationType=The IntelliJ Platform is a platform for building smart, language-aware IDEs with a comprehensive set of components.
4747
DESCR_EclipseApplicationType=Eclipse is an open-source community that develops open platforms and products.

visualvm/heapviewer/src/org/graalvm/visualvm/heapviewer/ui/MultiResolutionImageHack.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ private static void hackIcon(ImageIcon icon) {
8383
// Set the image observer to the multi-resolution image
8484
icon.setImageObserver(p);
8585

86-
// Mac OS X specific
86+
// macOS specific
8787
if (Platform.isMac()) {
8888
Method getInvertedIcon = icon.getClass().getMethod("getInvertedIcon"); // NOI18N
8989
getInvertedIcon.setAccessible(true);

visualvm/launcher/visualvm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ cd "$old"
5050

5151
case "`uname`" in
5252
Darwin*)
53-
# set default userdir and cachedir on Mac OS X
53+
# set default userdir and cachedir on macOS
5454
DEFAULT_USERDIR_ROOT="${HOME}/Library/Application Support/VisualVM"
5555
DEFAULT_CACHEDIR_ROOT=${HOME}/Library/Caches/VisualVM
5656
;;
@@ -201,7 +201,7 @@ launchNbexec() {
201201
fi
202202
}
203203

204-
# in case of macosx, the apple.laf.useScreenMenuBar property should be ideally in the Info.plist file
204+
# in case of macOS, the apple.laf.useScreenMenuBar property should be ideally in the Info.plist file
205205
# but it doesn't get propagated into the executed java VM.
206206
case "`uname`" in
207207
Darwin*)

visualvm/libs.profiler/lib.profiler.common/src/org/graalvm/visualvm/lib/common/integration/Bundle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ IntegrationUtils_PlatformSolarisIntelOs=Solaris (x86), 32bit JVM
6666
IntegrationUtils_PlatformSolarisAmd64Os=Solaris (x86), 64bit JVM
6767
IntegrationUtils_PlatformSolarisSparcOs=Solaris (Sparc), 32bit JVM
6868
IntegrationUtils_PlatformSolarisSparc64Os=Solaris (Sparc), 64bit JVM
69-
IntegrationUtils_PlatformMacOs=Mac OS X
69+
IntegrationUtils_PlatformMacOs=macOS
7070
# IntegrationUtils_ModifiedForProfilerString is placed into every file modified by the Profiler
7171
IntegrationUtils_ModifiedForProfilerString=This file was modified to allow integration with NetBeans Profiler
7272
# IntegrationUtils_OriginalBackupLocationString is placed into every file modified by the Profiler

visualvm/libs.profiler/lib.profiler.common/src/org/graalvm/visualvm/lib/common/integration/IntegrationUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -579,7 +579,7 @@ public static String getProfilerAgentCommandLineArgs(String targetPlatform, Stri
579579
return getProfilerAgentCommandLineArgsWithoutQuotes(targetPlatform, targetJVM, isRemote, portNumber); //NOI18N
580580
}
581581
if (!isWindowsPlatform(targetPlatform)) {
582-
// Profiler is installed in directory with space on Unix (Linux, Solaris, Mac OS X)
582+
// Profiler is installed in directory with space on Unix (Linux, Solaris, macOS)
583583
// create temporary link in /tmp directory and use it instead of directory with space
584584
String libsDirPath = getLibsDir(targetPlatform, isRemote);
585585
String args = getProfilerAgentCommandLineArgsWithoutQuotes(targetPlatform, targetJVM, isRemote, portNumber);

visualvm/libs.profiler/lib.profiler.ui/src/org/graalvm/visualvm/lib/ui/components/ComponentMorpher2.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454

5555

5656
/**
57-
* Not used now, getting component2 image on Mac OS X doesn't work
57+
* Not used now, getting component2 image on macOS doesn't work
5858
*
5959
* @author Jiri Sedlacek
6060
*/

visualvm/libs.profiler/lib.profiler.ui/src/org/graalvm/visualvm/lib/ui/swing/ProfilerPopup.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -522,7 +522,7 @@ public void windowLostFocus(WindowEvent e) {
522522
// except of the owner
523523
skippingEvents = true;
524524
if (DEBUG) System.err.println(">>> LOST TO DIALOG " + getString(d) + " owned by " + getString(d.getOwner())); // NOI18N
525-
// NOTE: workaround for problem on Mac OS X,
525+
// NOTE: workaround for problem on macOS,
526526
// closing the dialog opened from ProfilerPopup
527527
// doesn't bring the focus back to the ProfilerPopup
528528
final Window win = window;

visualvm/libs.profiler/lib.profiler.ui/src/org/graalvm/visualvm/lib/ui/swing/ProfilerTableHovers.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ protected void paintComponent(Graphics g) {
297297

298298
// Make sure there's no shadow behind the native window
299299
safeSetBackground(win, new Color(255, 255, 255, 0)); // Linux // #269737
300-
win.getRootPane().putClientProperty("Window.shadow", Boolean.FALSE.toString()); // Mac OS X // NOI18N
300+
win.getRootPane().putClientProperty("Window.shadow", Boolean.FALSE.toString()); // macOS // NOI18N
301301

302302
win.setVisible(true);
303303
} else {

visualvm/libs.profiler/profiler.snaptracer/src/org/graalvm/visualvm/lib/profiler/snaptracer/impl/swing/Separator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
import javax.swing.plaf.SeparatorUI;
5252

5353
/**
54-
* JSeparator applying a workaround for bad separator appearance on Mac OS X
54+
* JSeparator applying a workaround for bad separator appearance on macOS
5555
* broken by the NetBeans Platform.
5656
*
5757
* @author Jiri Sedlacek

0 commit comments

Comments
 (0)