mirror of
https://github.com/JetBrains/JetBrainsRuntime.git
synced 2025-12-06 09:29:38 +01:00
8272756: Remove unnecessary explicit initialization of volatile variables in java.desktop
Reviewed-by: jdv, aivanov
This commit is contained in:
committed by
Jayathirth D V
parent
36b89a1893
commit
ccbce107f2
@@ -404,8 +404,8 @@ public class Window extends Container implements Accessible {
|
||||
* These fields are initialized in the native peer code
|
||||
* or via AWTAccessor's WindowAccessor.
|
||||
*/
|
||||
private transient volatile int securityWarningWidth = 0;
|
||||
private transient volatile int securityWarningHeight = 0;
|
||||
private transient volatile int securityWarningWidth;
|
||||
private transient volatile int securityWarningHeight;
|
||||
|
||||
static {
|
||||
/* ensure that the necessary native libraries are loaded */
|
||||
|
||||
Reference in New Issue
Block a user