< prev index next >

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

Print this page

        

*** 1837,1846 **** --- 1837,1847 ---- * * @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,2042 **** --- 2034,2044 ---- * {@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 >