Changeset 16225 in josm
- Timestamp:
- 2020-04-04T11:08:03+02:00 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/MainApplication.java
r16120 r16225 412 412 */ 413 413 public static List<String> getCommandLineArgs() { 414 return Collections.unmodifiableList(commandLineArgs); 414 return commandLineArgs == null 415 ? Collections.emptyList() 416 : Collections.unmodifiableList(commandLineArgs); 415 417 } 416 418
Note:
See TracChangeset
for help on using the changeset viewer.