jdk/test/java/util/logging/Logger/getGlobal/TestGetGlobalByName.java
changeset 32649 2ee9017c7597
parent 20195 fcd61ec8fff6
equal deleted inserted replaced
32648:1fa861caf840 32649:2ee9017c7597
    43  * @run main/othervm/policy=policy -Djava.security.manager -Djava.util.logging.manager=testgetglobal.DummyLogManagerImpl TestGetGlobalByName
    43  * @run main/othervm/policy=policy -Djava.security.manager -Djava.util.logging.manager=testgetglobal.DummyLogManagerImpl TestGetGlobalByName
    44  * @author danielfuchs
    44  * @author danielfuchs
    45  */
    45  */
    46 public class TestGetGlobalByName {
    46 public class TestGetGlobalByName {
    47 
    47 
    48     final static String[] messages = {
    48     static final String[] messages = {
    49         "1. This message should not appear on the console.",
    49         "1. This message should not appear on the console.",
    50         "2. This message should appear on the console.",
    50         "2. This message should appear on the console.",
    51         "3. This message should now appear on the console too."
    51         "3. This message should now appear on the console too."
    52     };
    52     };
    53 
    53