Ignore:
Timestamp:
2013-11-03T01:06:23+01:00 (11 years ago)
Author:
Don-vip
Message:

Checkstyle:

  • private constructors for util classes
  • final classes
  • missing "else" statements
  • import cleanup
Location:
trunk/src/org/openstreetmap/josm/gui/conflict/tags
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/conflict/tags/MultiValueCellEditor.java

    r6084 r6362  
    7474                if (e.getID() == KeyEvent.KEY_PRESSED && e.getKeyCode() == KeyEvent.VK_ENTER) {
    7575                    fireGotoNextDecision();
    76                 } if (e.getID() == KeyEvent.KEY_PRESSED && e.getKeyCode() == KeyEvent.VK_TAB) {
     76                } else if (e.getID() == KeyEvent.KEY_PRESSED && e.getKeyCode() == KeyEvent.VK_TAB) {
    7777                    if (e.isShiftDown()) {
    7878                        fireGotoPreviousDecision();
  • trunk/src/org/openstreetmap/josm/gui/conflict/tags/RelationMemberConflictDecision.java

    r3083 r6362  
    11// License: GPL. For details, see LICENSE file.
    22package org.openstreetmap.josm.gui.conflict.tags;
     3
     4import static org.openstreetmap.josm.gui.conflict.tags.RelationMemberConflictDecisionType.UNDECIDED;
     5import static org.openstreetmap.josm.tools.I18n.tr;
    36
    47import org.openstreetmap.josm.data.osm.OsmPrimitive;
     
    69import org.openstreetmap.josm.data.osm.RelationMember;
    710import org.openstreetmap.josm.tools.CheckParameterUtil;
    8 
    9 import static org.openstreetmap.josm.tools.I18n.tr;
    10 import static org.openstreetmap.josm.gui.conflict.tags.RelationMemberConflictDecisionType.*;
    1111
    1212public class RelationMemberConflictDecision {
  • trunk/src/org/openstreetmap/josm/gui/conflict/tags/TagConflictResolutionUtil.java

    r6093 r6362  
    1313 *
    1414 */
    15 public class TagConflictResolutionUtil {
     15public final class TagConflictResolutionUtil {
    1616
    1717    /** no constructor, just static utility methods */
Note: See TracChangeset for help on using the changeset viewer.