Ignore:
Timestamp:
2013-07-17T00:01:49+02:00 (11 years ago)
Author:
stoecker
Message:

see #8853 remove tabs, trailing spaces, windows line ends, strange characters

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/dialogs/ConflictDialog.java

    r6009 r6070  
    6767    /**
    6868     * Replies the color used to paint conflicts.
    69      * 
     69     *
    7070     * @return the color used to paint conflicts
    7171     * @since 1221
     
    8383    /** the list widget for the list of conflicts */
    8484    private JList lstConflicts;
    85    
     85
    8686    private final JPopupMenu popupMenu = new JPopupMenu();
    8787    private final PopupMenuHandler popupMenuHandler = new PopupMenuHandler(popupMenu);
     
    115115            btnResolve, btnSelect
    116116        }));
    117        
     117
    118118        popupMenuHandler.addAction(Main.main.menu.autoScaleActions.get("conflict"));
    119119    }
     
    143143        DataSet.removeSelectionListener(this);
    144144    }
    145    
     145
    146146    /**
    147147     * Add a list selection listener to the conflicts list.
     
    152152        lstConflicts.getSelectionModel().addListSelectionListener(listener);
    153153    }
    154    
     154
    155155    /**
    156156     * Remove the given list selection listener from the conflicts list.
     
    161161        lstConflicts.getSelectionModel().removeListSelectionListener(listener);
    162162    }
    163    
     163
    164164    /**
    165165     * Replies the popup menu handler.
     
    218218    /**
    219219     * Paints all conflicts that can be expressed on the main window.
    220      * 
     220     *
    221221     * @param g The {@code Graphics} used to paint
    222222     * @param nc The {@code NavigatableComponent} used to get screen coordinates of nodes
     
    294294    /**
    295295     * returns the first selected item of the conflicts list
    296      * 
     296     *
    297297     * @return Conflict
    298298     */
     
    331331        return ht("/Dialog/ConflictList");
    332332    }
    333    
     333
    334334    class MouseEventHandler extends PopupMenuLauncher {
    335335        public MouseEventHandler() {
     
    438438            }
    439439            DataSet ds = Main.main.getCurrentDataSet();
    440             if (ds != null) { // Can't see how it is possible but it happened in #7942 
     440            if (ds != null) { // Can't see how it is possible but it happened in #7942
    441441                ds.setSelected(sel);
    442442            }
     
    450450        }
    451451    }
    452    
     452
    453453    /**
    454454     * Warns the user about the number of detected conflicts
Note: See TracChangeset for help on using the changeset viewer.