Skip to content

Commit 4622a18

Browse files
committedSep 30, 2020
8253791: Issue with useAppleColor check in CSystemColors.m
Reviewed-by: phh, lucy, serb
1 parent ac02afe commit 4622a18

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/java.desktop/macosx/native/libawt_lwawt/awt/CSystemColors.m

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2011, 2012, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2011, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -126,7 +126,7 @@ + (void)reloadColors {
126126
+ (NSColor*)getColor:(NSUInteger)colorIndex useAppleColor:(BOOL)useAppleColor {
127127
NSColor* result = nil;
128128

129-
if (colorIndex < (useAppleColor) ? sun_lwawt_macosx_LWCToolkit_NUM_APPLE_COLORS : java_awt_SystemColor_NUM_COLORS) {
129+
if (colorIndex < ((useAppleColor) ? sun_lwawt_macosx_LWCToolkit_NUM_APPLE_COLORS : java_awt_SystemColor_NUM_COLORS)) {
130130
result = (useAppleColor ? appleColors : sColors)[colorIndex];
131131
}
132132
else {

0 commit comments

Comments
 (0)
Please sign in to comment.