(InputStream r)
| 74 | /// |
| 75 | /// array of rows and columns |
| 76 | public String[][] parse(InputStream r) throws IOException { |
| 77 | return parse(Util.getReader(r)); |
| 78 | } |
| 79 | |
| 80 | /// Parses input from the given stream and returns the tokens broken into rows and columns |
| 81 | /// |