Ignore:
Timestamp:
2016-06-15T10:30:37+02:00 (8 years ago)
Author:
Don-vip
Message:

Checkstyle 6.19: enable SingleSpaceSeparator and fix violations

Location:
trunk/src/org/openstreetmap/josm/gui/tagging/presets
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/tagging/presets/TaggingPresetReader.java

    r10254 r10378  
    357357    public static Collection<TaggingPreset> readAll(Collection<String> sources, boolean validate, boolean displayErrMsg) {
    358358        HashSetWithLast<TaggingPreset> allPresets = new HashSetWithLast<>();
    359         for (String source : sources)  {
     359        for (String source : sources) {
    360360            try {
    361361                readAll(source, validate, allPresets);
  • trunk/src/org/openstreetmap/josm/gui/tagging/presets/TaggingPresetSelector.java

    r10300 r10378  
    6262
    6363    private static final BooleanProperty SEARCH_IN_TAGS = new BooleanProperty("taggingpreset.dialog.search-in-tags", true);
    64     private static final BooleanProperty ONLY_APPLICABLE  = new BooleanProperty("taggingpreset.dialog.only-applicable-to-selection", true);
     64    private static final BooleanProperty ONLY_APPLICABLE = new BooleanProperty("taggingpreset.dialog.only-applicable-to-selection", true);
    6565
    6666    private final JCheckBox ckOnlyApplicable;
  • trunk/src/org/openstreetmap/josm/gui/tagging/presets/items/Text.java

    r9996 r10378  
    8080        }
    8181        if (usage.unused()) {
    82             if (auto_increment_selected != 0  && auto_increment != null) {
     82            if (auto_increment_selected != 0 && auto_increment != null) {
    8383                try {
    8484                    textField.setText(Integer.toString(Integer.parseInt(
Note: See TracChangeset for help on using the changeset viewer.