- Timestamp:
- 2016-08-22T20:29:30+02:00 (8 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/ExtensionFileFilter.java
r10852 r10873 204 204 /** 205 205 * Updates the {@link AllFormatsImporter} that is contained in the importers list. If 206 * you do not use the importers variable directly, you don ’t need to call this.206 * you do not use the importers variable directly, you don't need to call this. 207 207 * <p> 208 208 * Updating the AllFormatsImporter is required when plugins add new importers that 209 * support new file extensions. The old AllFormatsImporter doesn ’t include the new209 * support new file extensions. The old AllFormatsImporter doesn't include the new 210 210 * extensions and thus will not display these files. 211 211 * -
trunk/src/org/openstreetmap/josm/actions/mapmode/DrawAction.java
r10853 r10873 94 94 private transient Set<OsmPrimitive> oldHighlights = new HashSet<>(); 95 95 // new highlights contains a list of primitives that should be highlighted 96 // but haven ’t been so far. The idea is to compare old and new and only96 // but haven't been so far. The idea is to compare old and new and only 97 97 // repaint if there are changes. 98 98 private transient Set<OsmPrimitive> newHighlights = new HashSet<>(); … … 930 930 boolean repaintIssued = removeHighlighting(); 931 931 // force repaint in case snapHelper needs one. If removeHighlighting 932 // caused one already, don ’t do it again.932 // caused one already, don't do it again. 933 933 if (!repaintIssued) { 934 934 editLayer.invalidate(); -
trunk/src/org/openstreetmap/josm/data/validation/routines/DomainValidator.java
r10859 r10873 919 919 "mattel", // mattel Mattel Sites, Inc. 920 920 "mba", // mba Lone Hollow, LLC 921 "mcd", // mcd McDonald ’s Corporation922 "mcdonalds", // mcdonalds McDonald ’s Corporation921 "mcd", // mcd McDonald's Corporation 922 "mcdonalds", // mcdonalds McDonald's Corporation 923 923 "mckinsey", // mckinsey McKinsey Holdings, Inc. 924 924 "med", // med Medistry LLC -
trunk/src/org/openstreetmap/josm/gui/io/LayerNameAndFilePathTableCell.java
r10308 r10873 175 175 176 176 /** 177 * Makes the given path fit lblFilename, appends ellipsis on the left if it doesn ’t fit.177 * Makes the given path fit lblFilename, appends ellipsis on the left if it doesn't fit. 178 178 * Idea: /home/user/josm → …/user/josm → …/josm; and take the first one that fits 179 179 * @param t complete path -
trunk/src/org/openstreetmap/josm/tools/Utils.java
r10805 r10873 830 830 * @return <code>str</code>, without leading and trailing characters, according to 831 831 * {@link Character#isWhitespace(char)} and {@link Character#isSpaceChar(char)}. 832 * @see <a href="http://closingbraces.net/2008/11/11/javastringtrim/">Java ’sString.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> 833 833 * @see <a href="https://bugs.openjdk.java.net/browse/JDK-4080617">JDK bug 4080617</a> 834 834 * @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.