< prev index next >

src/java.logging/share/classes/java/util/logging/LogManager.java

Print this page

        

@@ -1837,10 +1837,11 @@
      *
      * @throws  IOException if there are problems reading from the
      *          logging configuration file.
      *
      * @see #updateConfiguration(java.io.InputStream, java.util.function.Function)
+     * @since 9
      */
     public void updateConfiguration(Function<String, BiFunction<String,String,String>> mapper)
             throws IOException {
         checkPermission();
         ensureLogManagerInitialized();

@@ -2033,10 +2034,11 @@
      *          {@code mapper} returns a null function when invoked.
      *
      * @throws  IOException if there are problems reading from the stream,
      *          or the given stream is not in the
      *          {@linkplain java.util.Properties properties file} format.
+     * @since 9
      */
     public void updateConfiguration(InputStream ins,
             Function<String, BiFunction<String,String,String>> mapper)
             throws IOException {
         checkPermission();
< prev index next >