Changeset 7187 in josm for trunk


Ignore:
Timestamp:
2014-05-29T10:27:48+02:00 (10 years ago)
Author:
Don-vip
Message:

fix #10079 - typos in messages and javadoc

Location:
trunk/src/org/openstreetmap/josm
Files:
6 edited

Legend:

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

    r7119 r7187  
    535535     * <tt>osm-primitives.showid</tt> is set.
    536536     *
    537      * The id is append to the {@link StringBuilder} passed in in <code>name</code>.
     537     * The id is append to the {@link StringBuilder} passed in <code>name</code>.
    538538     *
    539539     * @param name  the name without the id
  • trunk/src/org/openstreetmap/josm/gui/ExceptionDialogUtil.java

    r6920 r7187  
    150150    /**
    151151     * Explains a {@link IllegalDataException} which has caused an {@link OsmTransferException}.
    152      * This is most likely happening when JOSM tries to load data in in an unsupported format.
     152     * This is most likely happening when JOSM tries to load data in an unsupported format.
    153153     *
    154154     * @param e the exception
  • trunk/src/org/openstreetmap/josm/gui/MainApplication.java

    r7043 r7187  
    546546                                "but <b>failed</b> to do so, because of the following network errors:<br>" +
    547547                                "{1}" +
    548                                 "It may result of a missing proxy configuration.<br>" +
     548                                "It may be due to a missing proxy configuration.<br>" +
    549549                                "Would you like to change your proxy settings now?",
    550550                                Utils.joinAsHtmlUnorderedList(NETWORK_ERRORS.keySet()),
  • trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/query/AdvancedChangesetQueryPanel.java

    r6990 r7187  
    965965
    966966    /**
    967      * Validator for user ids entered in in a {@link JTextComponent}.
     967     * Validator for user ids entered in a {@link JTextComponent}.
    968968     *
    969969     */
     
    10411041
    10421042    /**
    1043      * Validates dates entered as text in in a {@link JTextComponent}. Validates the input
     1043     * Validates dates entered as text in a {@link JTextComponent}. Validates the input
    10441044     * on the fly and gives feedback about whether the date is valid or not.
    10451045     *
     
    11041104
    11051105    /**
    1106      * Validates time values entered as text in in a {@link JTextComponent}. Validates the input
     1106     * Validates time values entered as text in a {@link JTextComponent}. Validates the input
    11071107     * on the fly and gives feedback about whether the time value is valid or not.
    11081108     *
  • trunk/src/org/openstreetmap/josm/io/DefaultProxySelector.java

    r7025 r7187  
    2929
    3030    private static final List<Proxy> NO_PROXY_LIST = Collections.singletonList(Proxy.NO_PROXY);
    31    
     31
    3232    private static final String IPV4_LOOPBACK = "127.0.0.1";
    3333    private static final String IPV6_LOOPBACK = "::1";
     
    9393            port = Integer.parseInt(value);
    9494        } catch (NumberFormatException e) {
    95             Main.error(tr("Unexpected format for port number in in preference ''{0}''. Got ''{1}''.", property, value));
     95            Main.error(tr("Unexpected format for port number in preference ''{0}''. Got ''{1}''.", property, value));
    9696            Main.error(tr("The proxy will not be used."));
    9797            return 0;
  • trunk/src/org/openstreetmap/josm/tools/ExceptionUtil.java

    r7024 r7187  
    486486    /**
    487487     * Explains a {@link IllegalDataException} which has caused an {@link OsmTransferException}.
    488      * This is most likely happening when JOSM tries to load data in in an unsupported format.
     488     * This is most likely happening when JOSM tries to load data in an unsupported format.
    489489     *
    490490     * @param e the exception
Note: See TracChangeset for help on using the changeset viewer.