summaryrefslogtreecommitdiff
path: root/java/util/Scanner.java
Commit message (Collapse)AuthorAgeFilesLines
* Correctly spot EOF in java.util.Scanner#hasNextLine().Andrew John Hughes2009-07-071-0/+2
| | | | | | | | | | | | | 2009-07-07 Andrew John Hughes <ahughes@redhat.com> PR classpath/40630 * java/util/Scanner.java: (myCoreNext(boolean, Pattern)): Set tmp2 to null if the string is empty (i.e. we are at the end of the file). * java/util/regex/Matcher.java: (toMatchResult()): Check that match is non-null before attempting to clone it.
* Whitespace cleanup.Andrew John Hughes2009-07-071-371/+369
| | | | | | | | 2009-07-07 Andrew John Hughes <ahughes@redhat.com> * java/util/Scanner.java, * java/util/regex/Matcher.java: Replace tab characters with spaces.
* Add initial implementation of java.util.Scanner.Andrew John Hughes2008-08-161-0/+2223
2008-08-17 Andrew John Hughes <gnu_andrew@member.fsf.org> * AUTHORS: Added Laszlo. 2008-04-20 Andrew John Hughes <gnu_andrew@member.fsf.org> PR classpath/30436: * java/util/Scanner.java: Fix package to be java.util and correct indentation. 2007-07-25 Laszlo Andras Hernadi <e0327023@student.tuwien.ac.at> PR classpath/30436: * java/util/Scanner.java: Initial implementation.