Changeset 10873 in josm for trunk/src/org


Ignore:
Timestamp:
2016-08-22T20:29:30+02:00 (8 years ago)
Author:
Don-vip
Message:

see #13412 - replace character by ' in comments, cause encoding problems when applying UTF-8 patches with Eclipse on Windows, see https://bugs.eclipse.org/bugs/show_bug.cgi?id=214085

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

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/actions/ExtensionFileFilter.java

    r10852 r10873  
    204204    /**
    205205     * Updates the {@link AllFormatsImporter} that is contained in the importers list. If
    206      * you do not use the importers variable directly, you dont need to call this.
     206     * you do not use the importers variable directly, you don't need to call this.
    207207     * <p>
    208208     * Updating the AllFormatsImporter is required when plugins add new importers that
    209      * support new file extensions. The old AllFormatsImporter doesnt include the new
     209     * support new file extensions. The old AllFormatsImporter doesn't include the new
    210210     * extensions and thus will not display these files.
    211211     *
  • trunk/src/org/openstreetmap/josm/actions/mapmode/DrawAction.java

    r10853 r10873  
    9494    private transient Set<OsmPrimitive> oldHighlights = new HashSet<>();
    9595    // new highlights contains a list of primitives that should be highlighted
    96     // but havent been so far. The idea is to compare old and new and only
     96    // but haven't been so far. The idea is to compare old and new and only
    9797    // repaint if there are changes.
    9898    private transient Set<OsmPrimitive> newHighlights = new HashSet<>();
     
    930930        boolean repaintIssued = removeHighlighting();
    931931        // force repaint in case snapHelper needs one. If removeHighlighting
    932         // caused one already, dont do it again.
     932        // caused one already, don't do it again.
    933933        if (!repaintIssued) {
    934934            editLayer.invalidate();
  • trunk/src/org/openstreetmap/josm/data/validation/routines/DomainValidator.java

    r10859 r10873  
    919919        "mattel", // mattel Mattel Sites, Inc.
    920920        "mba", // mba Lone Hollow, LLC
    921         "mcd", // mcd McDonalds Corporation
    922         "mcdonalds", // mcdonalds McDonalds Corporation
     921        "mcd", // mcd McDonald's Corporation
     922        "mcdonalds", // mcdonalds McDonald's Corporation
    923923        "mckinsey", // mckinsey McKinsey Holdings, Inc.
    924924        "med", // med Medistry LLC
  • trunk/src/org/openstreetmap/josm/gui/io/LayerNameAndFilePathTableCell.java

    r10308 r10873  
    175175
    176176    /**
    177      * Makes the given path fit lblFilename, appends ellipsis on the left if it doesnt fit.
     177     * Makes the given path fit lblFilename, appends ellipsis on the left if it doesn't fit.
    178178     * Idea: /home/user/josm → …/user/josm → …/josm; and take the first one that fits
    179179     * @param t complete path
  • trunk/src/org/openstreetmap/josm/tools/Utils.java

    r10805 r10873  
    830830     * @return <code>str</code>, without leading and trailing characters, according to
    831831     *         {@link Character#isWhitespace(char)} and {@link Character#isSpaceChar(char)}.
    832      * @see <a href="http://closingbraces.net/2008/11/11/javastringtrim/">Java’s String.trim has a strange idea of whitespace</a>
     832     * @see <a href="http://closingbraces.net/2008/11/11/javastringtrim/">Java String.trim has a strange idea of whitespace</a>
    833833     * @see <a href="https://bugs.openjdk.java.net/browse/JDK-4080617">JDK bug 4080617</a>
    834834     * @see <a href="https://bugs.openjdk.java.net/browse/JDK-7190385">JDK bug 7190385</a>
Note: See TracChangeset for help on using the changeset viewer.