Changeset 10079 in josm for trunk/src/org
- Timestamp:
- 2016-03-29T23:07:24+02:00 (9 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/MapScaler.java
r10078 r10079 26 26 private final NavigatableComponent mv; 27 27 28 private final staticint PADDING_LEFT = 5;29 private final staticint PADDING_RIGHT = 50;28 private static final int PADDING_LEFT = 5; 29 private static final int PADDING_RIGHT = 50; 30 30 31 31 /** … … 121 121 * @param width The width of the mark. 122 122 */ 123 publicTickMarks(double dist100Pixel, int width) {123 TickMarks(double dist100Pixel, int width) { 124 124 this.dist100Pixel = dist100Pixel; 125 125 lineDistance = dist100Pixel * width / 100; -
trunk/src/org/openstreetmap/josm/io/CertificateAmendment.java
r10076 r10079 96 96 byte[] sha = md.digest(certBytes); 97 97 if (!SHA_HASHES[i].equals(Utils.toHexString(sha))) 98 throw new RuntimeException(tr("Error adding certificate {0} - hash mismatch. Expected {1}, was {2}", CERT_AMEND[i], SHA_HASHES[i], Utils.toHexString(sha))); 98 throw new RuntimeException(tr("Error adding certificate {0} - hash mismatch. Expected {1}, was {2}", 99 CERT_AMEND[i], SHA_HASHES[i], Utils.toHexString(sha))); 99 100 100 101 ByteArrayInputStream certIS = new ByteArrayInputStream(certBytes);
Note:
See TracChangeset
for help on using the changeset viewer.