Ignore:
Timestamp:
2019-01-04T22:24:53+01:00 (7 years ago)
Author:
simon04
Message:

Run Checkstyle on scripts/ and apply fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/scripts/BuildProjectionDefinitions.java

    r14201 r14637  
    2828 * proj.4 project and a list maintained by the JOSM team.
    2929 */
    30 public class BuildProjectionDefinitions {
     30public final class BuildProjectionDefinitions {
    3131
    3232    private static final String PROJ_DIR = "data_nodist/projection";
     
    6565    private static List<String> knownNadgrids;
    6666
     67    private BuildProjectionDefinitions() {
     68    }
     69
    6770    /**
    6871     * Program entry point
     
    164167            }
    165168            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));
    167171            }
    168172            if (noEquatorStereo > 0) {
     
    209213
    210214        // exclude projections failing
     215        // CHECKSTYLE.OFF: LineLength
    211216        if (Arrays.asList(
    212217                // Unsuitable parameters 'lat_1' and 'lat_2' for two point method
     
    235240            result = false;
    236241        }
     242        // CHECKSTYLE.ON: LineLength
    237243
    238244        Map<String, String> parameters;
Note: See TracChangeset for help on using the changeset viewer.