Ignore:
Timestamp:
2016-01-24T00:24:39+01:00 (8 years ago)
Author:
bastiK
Message:

fix Coverity Scan warning (see #12186)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/projection/proj/LambertConformalConic.java

    r9558 r9600  
    2828
    2929    protected Ellipsoid ellps;
    30     protected double e;
    3130
    3231    public abstract static class Parameters {
     
    7877    @Override
    7978    public void initialize(ProjParameters params) throws ProjectionConfigurationException {
     79        super.initialize(params);
    8080        ellps = params.ellps;
    81         e = ellps.e;
    8281        if (params.lat0 == null)
    8382            throw new ProjectionConfigurationException(tr("Parameter ''{0}'' required.", Param.lat_0.key));
Note: See TracChangeset for help on using the changeset viewer.