src/share/classes/java/util/Scanner.java

Print this page

        

*** 568,578 **** * Constructs a <code>Scanner</code> that returns values scanned * from the specified source delimited by the specified pattern. * * @param source A character source implementing the Readable interface * @param pattern A delimiting pattern - * @return A scanner with the specified source and pattern */ private Scanner(Readable source, Pattern pattern) { assert source != null : "source should not be null"; assert pattern != null : "pattern should not be null"; this.source = source; --- 568,577 ----