Changeset 11453 in josm for trunk/src/org/openstreetmap/josm/data/preferences/PreferencesReader.java
- Timestamp:
- 2017-01-12T01:38:04+01:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/preferences/PreferencesReader.java
r10306 r11453 52 52 * @param defaults true when reading from the cache file for default preferences, 53 53 * false for the regular preferences config file 54 * @throws IOException if any I/O error occurs 55 * @throws XMLStreamException if any XML stream error occurs 56 */ 57 public PreferencesReader(File file, boolean defaults) throws IOException, XMLStreamException { 54 */ 55 public PreferencesReader(File file, boolean defaults) { 58 56 this.defaults = defaults; 59 57 this.reader = null; … … 66 64 * @param defaults true when reading from the cache file for default preferences, 67 65 * false for the regular preferences config file 68 * @throws XMLStreamException if any XML stream error occurs 69 */ 70 public PreferencesReader(Reader reader, boolean defaults) throws XMLStreamException { 66 */ 67 public PreferencesReader(Reader reader, boolean defaults) { 71 68 this.defaults = defaults; 72 69 this.reader = reader;
Note:
See TracChangeset
for help on using the changeset viewer.
