Changeset 30738 in osm for applications/editors/josm/plugins/reltoolbox/src/relcontext/relationfix/NothingFixer.java
- Timestamp:
- 2014-10-19T01:27:04+02:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/reltoolbox/src/relcontext/relationfix/NothingFixer.java
r28693 r30738 9 9 public class NothingFixer extends RelationFixer { 10 10 11 public NothingFixer() {12 super("");13 }14 @Override15 public boolean isFixerApplicable(Relation rel) {16 return true;17 }18 @Override19 public boolean isRelationGood(Relation rel) {20 return true;21 }11 public NothingFixer() { 12 super(""); 13 } 14 @Override 15 public boolean isFixerApplicable(Relation rel) { 16 return true; 17 } 18 @Override 19 public boolean isRelationGood(Relation rel) { 20 return true; 21 } 22 22 23 @Override24 public Command fixRelation(Relation rel) {25 return null;26 }23 @Override 24 public Command fixRelation(Relation rel) { 25 return null; 26 } 27 27 28 28 }
Note:
See TracChangeset
for help on using the changeset viewer.
