src/share/classes/java/util/function/DoubleConsumer.java

Print this page
rev 7047 : 8004015: Additional static and instance utils for functional interfaces.
Reviewed-by: briangoetz

*** 39,45 **** /** * Accept an input value. * * @param value the input value */ ! public void accept(double value); } --- 39,45 ---- /** * Accept an input value. * * @param value the input value */ ! void accept(double value); }