IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
diff --git a/src/org/openstreetmap/josm/data/coor/conversion/AbstractCoordinateFormat.java b/src/org/openstreetmap/josm/data/coor/conversion/AbstractCoordinateFormat.java
|
a
|
b
|
|
| 37 | 37 | * By not using the localized decimal separator, we can present a comma separated list of coordinates. |
| 38 | 38 | * @param pattern decimal format pattern |
| 39 | 39 | * @return {@code DecimalFormat} using dot as decimal separator |
| 40 | | * @see DecimalFormat#applyPattern |
| | 40 | * @see DecimalFormat#applyPattern(String) |
| 41 | 41 | * @since 14203 |
| 42 | 42 | */ |
| 43 | 43 | public static DecimalFormat newUnlocalizedDecimalFormat(String pattern) { |
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
diff --git a/src/org/openstreetmap/josm/data/osm/visitor/paint/AbstractMapRenderer.java b/src/org/openstreetmap/josm/data/osm/visitor/paint/AbstractMapRenderer.java
|
a
|
b
|
|
| 90 | 90 | * @param n The node to draw. |
| 91 | 91 | * @param color The color of the node. |
| 92 | 92 | * @param size size in pixels |
| 93 | | * @param fill determines if the square mmust be filled |
| | 93 | * @param fill determines if the square must be filled |
| 94 | 94 | */ |
| 95 | 95 | public abstract void drawNode(INode n, Color color, int size, boolean fill); |
| 96 | 96 | |
| … |
… |
|
| 195 | 195 | } |
| 196 | 196 | |
| 197 | 197 | /** |
| 198 | | * Checks if a way segemnt is large enough for additional information display. |
| | 198 | * Checks if a way segment is large enough for additional information display. |
| 199 | 199 | * |
| 200 | 200 | * @param p1 First point of the way segment. |
| 201 | 201 | * @param p2 Second point of the way segment. |
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
diff --git a/src/org/openstreetmap/josm/data/projection/proj/AlbersEqualArea.java b/src/org/openstreetmap/josm/data/projection/proj/AlbersEqualArea.java
|
a
|
b
|
|
| 10 | 10 | /** |
| 11 | 11 | * Albers Equal Area Projection (EPSG code 9822). This is a conic projection with parallels being |
| 12 | 12 | * unequally spaced arcs of concentric circles, more closely spaced at north and south edges of the |
| 13 | | * map. Merideans are equally spaced radii of the same circles and intersect parallels at right |
| | 13 | * map. Meridians are equally spaced radii of the same circles and intersect parallels at right |
| 14 | 14 | * angles. As the name implies, this projection minimizes distortion in areas. |
| 15 | 15 | * <p> |
| 16 | 16 | * The {@code "standard_parallel_2"} parameter is optional and will be given the same value as |
| … |
… |
|
| 27 | 27 | * <b>References:</b> |
| 28 | 28 | * <ul> |
| 29 | 29 | * <li> Proj-4.4.7 available at <A HREF="http://www.remotesensing.org/proj">www.remotesensing.org/proj</A><br> |
| 30 | | * Relevent files are: PJ_aea.c, pj_fwd.c and pj_inv.c </li> |
| | 30 | * Relevant files are: PJ_aea.c, pj_fwd.c and pj_inv.c </li> |
| 31 | 31 | * <li> John P. Snyder (Map Projections - A Working Manual, |
| 32 | 32 | * U.S. Geological Survey Professional Paper 1395, 1987)</li> |
| 33 | 33 | * <li> "Coordinate Conversions and Transformations including Formulas", |
| 34 | | * EPSG Guidence Note Number 7, Version 19.</li> |
| | 34 | * EPSG Guidance Note Number 7, Version 19.</li> |
| 35 | 35 | * </ul> |
| 36 | 36 | * |
| 37 | 37 | * @author Gerald I. Evenden (for original code in Proj4) |
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
diff --git a/src/org/openstreetmap/josm/gui/layer/geoimage/AdjustTimezoneAndOffsetDialog.java b/src/org/openstreetmap/josm/gui/layer/geoimage/AdjustTimezoneAndOffsetDialog.java
|
a
|
b
|
|
| 157 | 157 | |
| 158 | 158 | /** |
| 159 | 159 | * Sets the {@link AdjustListener}. |
| 160 | | * @param listener adjuust listener. Can be null |
| | 160 | * @param listener adjust listener, can be null |
| 161 | 161 | * @return {@code this} |
| 162 | 162 | */ |
| 163 | 163 | public final AdjustTimezoneAndOffsetDialog adjustListener(AdjustListener listener) { |
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
diff --git a/src/org/openstreetmap/josm/gui/tagging/ac/AutoCompletingTextField.java b/src/org/openstreetmap/josm/gui/tagging/ac/AutoCompletingTextField.java
|
a
|
b
|
|
| 46 | 46 | @Override |
| 47 | 47 | public void insertString(int offs, String str, AttributeSet a) throws BadLocationException { |
| 48 | 48 | |
| 49 | | // If a maximum number of characters is specified, avoid to exceed it |
| | 49 | // If a maximum number of characters is specified, avoid exceeding it |
| 50 | 50 | if (maxChars != null && str != null && getLength() + str.length() > maxChars) { |
| 51 | 51 | int allowedLength = maxChars-getLength(); |
| 52 | 52 | if (allowedLength > 0) { |
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
diff --git a/src/org/openstreetmap/josm/gui/tagging/ac/AutoCompletionManager.java b/src/org/openstreetmap/josm/gui/tagging/ac/AutoCompletionManager.java
|
a
|
b
|
|
| 456 | 456 | |
| 457 | 457 | @Override |
| 458 | 458 | public void relationMembersChanged(RelationMembersChangedEvent event) { |
| 459 | | dirty = true; // TODO: not necessary to rebuid if a member is added |
| | 459 | dirty = true; // TODO: not necessary to rebuild if a member is added |
| 460 | 460 | } |
| 461 | 461 | |
| 462 | 462 | @Override |
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
diff --git a/src/org/openstreetmap/josm/gui/tagging/presets/items/PresetLink.java b/src/org/openstreetmap/josm/gui/tagging/presets/items/PresetLink.java
|
a
|
b
|
|
| 21 | 21 | import org.openstreetmap.josm.tools.GBC; |
| 22 | 22 | |
| 23 | 23 | /** |
| 24 | | * Adds a link to an other preset. |
| | 24 | * Adds a link to another preset. |
| 25 | 25 | * @since 8863 |
| 26 | 26 | */ |
| 27 | 27 | public class PresetLink extends TextItem { |
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
diff --git a/src/org/openstreetmap/josm/gui/widgets/AbstractIdTextField.java b/src/org/openstreetmap/josm/gui/widgets/AbstractIdTextField.java
|
a
|
b
|
|
| 75 | 75 | |
| 76 | 76 | /** |
| 77 | 77 | * Tries to set text from given contents (no effect with invalid or empty contents) |
| 78 | | * @param contents The text to interprete as ID(s) |
| | 78 | * @param contents The text to interpret as ID(s) |
| 79 | 79 | * @return true if text has been pasted and valid ids have been read |
| 80 | 80 | */ |
| 81 | 81 | public boolean tryToPasteFrom(String contents) { |