| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 class Reader { | 5 class Reader { |
| 6 Reader() { } | 6 Reader() { } |
| 7 | 7 |
| 8 void loadFromString(Spreadsheet spreadsheet, String data) { | 8 void loadFromString(Spreadsheet spreadsheet, String data) { |
| 9 List<String> parts = StringUtils.split(data, StringUtils.NEWLINE); | 9 List<String> parts = StringUtils.split(data, StringUtils.NEWLINE); |
| 10 loadSpreadsheet(spreadsheet, parts); | 10 loadSpreadsheet(spreadsheet, parts); |
| 11 } | 11 } |
| 12 | 12 |
| 13 void loadSpreadsheet(Spreadsheet spreadsheet, List<String> data) { } | 13 void loadSpreadsheet(Spreadsheet spreadsheet, List<String> data) { } |
| 14 | |
| 15 List<String> makeExample(String id) { } | |
| 16 } | 14 } |
| 17 | 15 |
| OLD | NEW |