src/java.logging/share/classes/java/util/logging/Logger.java
changeset 52427 3c6aa484536c
parent 49510 a7777856ae98
equal deleted inserted replaced
52426:38bf0c9c4e64 52427:3c6aa484536c
     1 /*
     1 /*
     2  * Copyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2000, 2018, 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
    35 import java.util.Objects;
    35 import java.util.Objects;
    36 import java.util.ResourceBundle;
    36 import java.util.ResourceBundle;
    37 import java.util.concurrent.CopyOnWriteArrayList;
    37 import java.util.concurrent.CopyOnWriteArrayList;
    38 import java.util.function.Supplier;
    38 import java.util.function.Supplier;
    39 
    39 
    40 import jdk.internal.misc.JavaUtilResourceBundleAccess;
    40 import jdk.internal.access.JavaUtilResourceBundleAccess;
    41 import jdk.internal.misc.SharedSecrets;
    41 import jdk.internal.access.SharedSecrets;
    42 import jdk.internal.reflect.CallerSensitive;
    42 import jdk.internal.reflect.CallerSensitive;
    43 import jdk.internal.reflect.Reflection;
    43 import jdk.internal.reflect.Reflection;
    44 import static jdk.internal.logger.DefaultLoggerFinder.isSystem;
    44 import static jdk.internal.logger.DefaultLoggerFinder.isSystem;
    45 
    45 
    46 /**
    46 /**