Ticket #3002: extension-file-filter-np-check.patch
| File extension-file-filter-np-check.patch, 690 bytes (added by , 17 years ago) |
|---|
-
src/org/openstreetmap/josm/actions/ExtensionFileFilter.java
42 42 * 43 43 */ 44 44 public ExtensionFileFilter(String extension, String defExt, String description) { 45 if (extension == null || 46 defExt == null || 47 description == null) { 48 throw new NullPointerException(); 49 } 45 50 this.extension = extension; 46 51 defaultExtension = defExt; 47 52 this.description = description;
