Changeset 14637 in josm
- Timestamp:
- 2019-01-04T22:24:53+01:00 (6 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/build.xml
r14636 r14637 922 922 excludes="gui/mappaint/mapcss/parsergen/*.java"/> 923 923 <fileset dir="${base.dir}/test" includes="**/*.java"/> 924 <fileset dir="${base.dir}/scripts" includes="**/*.java"/> 924 925 <formatter type="plain"/> 925 926 <formatter type="xml" toFile="checkstyle-josm.xml"/> -
trunk/scripts/BuildProjectionDefinitions.java
r14201 r14637 28 28 * proj.4 project and a list maintained by the JOSM team. 29 29 */ 30 public class BuildProjectionDefinitions {30 public final class BuildProjectionDefinitions { 31 31 32 32 private static final String PROJ_DIR = "data_nodist/projection"; … … 65 65 private static List<String> knownNadgrids; 66 66 67 private BuildProjectionDefinitions() { 68 } 69 67 70 /** 68 71 * Program entry point … … 164 167 } 165 168 if (noOmercNoBounds > 0) { 166 System.out.println(String.format(" * projection is Oblique Mercator (requires bounds), but no bounds specified: %d entries", noOmercNoBounds)); 169 System.out.println(String.format( 170 " * projection is Oblique Mercator (requires bounds), but no bounds specified: %d entries", noOmercNoBounds)); 167 171 } 168 172 if (noEquatorStereo > 0) { … … 209 213 210 214 // exclude projections failing 215 // CHECKSTYLE.OFF: LineLength 211 216 if (Arrays.asList( 212 217 // Unsuitable parameters 'lat_1' and 'lat_2' for two point method … … 235 240 result = false; 236 241 } 242 // CHECKSTYLE.ON: LineLength 237 243 238 244 Map<String, String> parameters; -
trunk/scripts/I18nSimilarStrings.java
r14373 r14637 1 // License: GPL. For details, see LICENSE file. 2 1 3 import java.util.ArrayList; 2 4 import java.util.Collections; … … 18 20 */ 19 21 public final class I18nSimilarStrings { 22 23 private I18nSimilarStrings() { 24 } 20 25 21 26 /**
Note:
See TracChangeset
for help on using the changeset viewer.