jdk/src/java.management/share/classes/sun/management/Util.java
changeset 30355 e37c7eba132f
parent 25859 3317bb8137f4
equal deleted inserted replaced
30354:ca83b4cae363 30355:e37c7eba132f
     1 /*
     1 /*
     2  * Copyright (c) 2003, 2008, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2003, 2015, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
    79     }
    79     }
    80 
    80 
    81     static void checkMonitorAccess() throws SecurityException {
    81     static void checkMonitorAccess() throws SecurityException {
    82         checkAccess(monitorPermission);
    82         checkAccess(monitorPermission);
    83     }
    83     }
    84     static void checkControlAccess() throws SecurityException {
    84     public static void checkControlAccess() throws SecurityException {
    85         checkAccess(controlPermission);
    85         checkAccess(controlPermission);
    86     }
    86     }
    87 }
    87 }