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

Print this page
rev 6273 : 8004561: Additional functional interfaces, extension methods and name changes
Summary: Adds additional functional interfaces for primitives and "Bi" (two operand). Adds utility extension methods. Includes some name changes for existing functional interfaces per EG decisions.
Reviewed-by: briangoetz

@@ -25,12 +25,12 @@
 package java.util.function;
 
 /**
  * A supplier of {@code long} values.
  *
- * <p/>This is the primitive type specialization of {@link Supplier} for
- * {@code long} and also may be used as a {@code Supplier<Long>}.
+ * <p>This is the primitive type specialization of {@link Supplier} for
+ * {@code long}.
  *
  * @since 1.8
  */
 public interface LongSupplier {