--- old/src/share/classes/java/util/stream/BaseStream.java 2013-07-08 15:37:58.493818930 -0700 +++ new/src/share/classes/java/util/stream/BaseStream.java 2013-07-08 15:37:58.305818933 -0700 @@ -29,15 +29,13 @@ /** * Base interface for stream types such as {@link Stream}, {@link IntStream}, - * etc. Contains methods common to all stream types. Many of these methods - * are implemented by {@link AbstractPipeline}, even though - * {@code AbstractPipeline} does not directly implement {@code BaseStream}. + * etc. Contains methods common to all stream types. * * @param type of stream elements * @param type of stream implementing {@code BaseStream} * @since 1.8 */ -interface BaseStream> { +public interface BaseStream> { /** * Returns an iterator for the elements of this stream. *