Ignore:
Timestamp:
2015-10-08T00:22:36+02:00 (9 years ago)
Author:
Don-vip
Message:

fix Checkstyle issues

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/conflict/pair/ListMerger.java

    r8512 r8836  
    435435    class CopyStartLeftAction extends CopyAction {
    436436
    437         public CopyStartLeftAction() {
     437        CopyStartLeftAction() {
    438438            super(/* ICON(dialogs/conflict/)*/ "copystartleft", tr("> top"),
    439439                tr("Copy my selected nodes to the start of the merged node list"));
     
    457457    class CopyEndLeftAction extends CopyAction {
    458458
    459         public CopyEndLeftAction() {
     459        CopyEndLeftAction() {
    460460            super(/* ICON(dialogs/conflict/)*/ "copyendleft", tr("> bottom"),
    461461                tr("Copy my selected elements to the end of the list of merged elements."));
     
    479479    class CopyBeforeCurrentLeftAction extends CopyAction {
    480480
    481         public CopyBeforeCurrentLeftAction() {
     481        CopyBeforeCurrentLeftAction() {
    482482            super(/* ICON(dialogs/conflict/)*/ "copybeforecurrentleft", tr("> before"),
    483483                    tr("Copy my selected elements before the first selected element in the list of merged elements."));
     
    509509    class CopyAfterCurrentLeftAction extends CopyAction {
    510510
    511         public CopyAfterCurrentLeftAction() {
     511        CopyAfterCurrentLeftAction() {
    512512            super(/* ICON(dialogs/conflict/)*/ "copyaftercurrentleft", tr("> after"),
    513513                    tr("Copy my selected elements after the first selected element in the list of merged elements."));
     
    535535    class CopyStartRightAction extends CopyAction {
    536536
    537         public CopyStartRightAction() {
     537        CopyStartRightAction() {
    538538            super(/* ICON(dialogs/conflict/)*/ "copystartright", tr("< top"),
    539539                tr("Copy their selected element to the start of the list of merged elements."));
     
    553553    class CopyEndRightAction extends CopyAction {
    554554
    555         public CopyEndRightAction() {
     555        CopyEndRightAction() {
    556556            super(/* ICON(dialogs/conflict/)*/ "copyendright", tr("< bottom"),
    557557                tr("Copy their selected elements to the end of the list of merged elements."));
     
    571571    class CopyBeforeCurrentRightAction extends CopyAction {
    572572
    573         public CopyBeforeCurrentRightAction() {
     573        CopyBeforeCurrentRightAction() {
    574574            super(/* ICON(dialogs/conflict/)*/ "copybeforecurrentright", tr("< before"),
    575575                    tr("Copy their selected elements before the first selected element in the list of merged elements."));
     
    597597    class CopyAfterCurrentRightAction extends CopyAction {
    598598
    599         public CopyAfterCurrentRightAction() {
     599        CopyAfterCurrentRightAction() {
    600600            super(/* ICON(dialogs/conflict/)*/ "copyaftercurrentright", tr("< after"),
    601601                    tr("Copy their selected element after the first selected element in the list of merged elements"));
     
    623623    class CopyAllLeft extends AbstractAction implements Observer, PropertyChangeListener {
    624624
    625         public CopyAllLeft() {
     625        CopyAllLeft() {
    626626            ImageIcon icon = ImageProvider.get("dialogs/conflict", "useallleft");
    627627            putValue(Action.SMALL_ICON, icon);
     
    652652    class CopyAllRight extends AbstractAction implements Observer, PropertyChangeListener {
    653653
    654         public CopyAllRight() {
     654        CopyAllRight() {
    655655            ImageIcon icon = ImageProvider.get("dialogs/conflict", "useallright");
    656656            putValue(Action.SMALL_ICON, icon);
     
    681681    class MoveUpMergedAction extends AbstractAction implements ListSelectionListener {
    682682
    683         public MoveUpMergedAction() {
     683        MoveUpMergedAction() {
    684684            ImageIcon icon = ImageProvider.get("dialogs/conflict", "moveup");
    685685            putValue(Action.SMALL_ICON, icon);
     
    715715    class MoveDownMergedAction extends AbstractAction implements ListSelectionListener {
    716716
    717         public MoveDownMergedAction() {
     717        MoveDownMergedAction() {
    718718            ImageIcon icon = ImageProvider.get("dialogs/conflict", "movedown");
    719719            putValue(Action.SMALL_ICON, icon);
     
    749749    class RemoveMergedAction extends AbstractAction implements ListSelectionListener {
    750750
    751         public RemoveMergedAction() {
     751        RemoveMergedAction() {
    752752            ImageIcon icon = ImageProvider.get("dialogs/conflict", "remove");
    753753            putValue(Action.SMALL_ICON, icon);
Note: See TracChangeset for help on using the changeset viewer.