Ignore:
Timestamp:
2015-06-02T16:41:37+02:00 (9 years ago)
Author:
Don-vip
Message:

remove extra whitespaces

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/io/remotecontrol/AddTagsDialog.java

    r8379 r8444  
    117117     */
    118118    public AddTagsDialog(String[][] tags, String senderName, Collection<? extends OsmPrimitive> primitives) {
    119         super(Main.parent, tr("Add tags to selected objects"), new String[] { tr("Add selected tags"), tr("Add all tags"), tr("Cancel")},
     119        super(Main.parent, tr("Add tags to selected objects"), new String[] {tr("Add selected tags"), tr("Add all tags"), tr("Cancel")},
    120120                false,
    121121                true);
     
    213213        if (!sender.isEmpty() && !trustedSenders.contains(sender)) {
    214214            final JCheckBox c = new JCheckBox();
    215             c.setAction(new AbstractAction(tr("Accept all tags from {0} for this session", sender) ) {
     215            c.setAction(new AbstractAction(tr("Accept all tags from {0} for this session", sender)) {
    216216                @Override public void actionPerformed(ActionEvent e) {
    217217                    if (c.isSelected())
     
    220220                        trustedSenders.remove(sender);
    221221                }
    222             } );
     222            });
    223223            tablePanel.add(c , GBC.eol().insets(20,10,0,0));
    224224        }
     
    274274                        for (String tag : tagSet) {
    275275                            // support a  =   b===c as "a"="b===c"
    276                             String [] pair = tag.split("\\s*=\\s*",2);
     276                            String[] pair = tag.split("\\s*=\\s*",2);
    277277                            keyValue[i][0] = pair[0];
    278278                            keyValue[i][1] = pair.length<2 ? "": pair[1];
Note: See TracChangeset for help on using the changeset viewer.