Ignore:
Timestamp:
2016-06-01T00:55:28+02:00 (8 years ago)
Author:
donvip
Message:

sonar - fix many issues

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/MenuActionLoadFromCache.java

    r32060 r32211  
    1818    private static final long serialVersionUID = 1L;
    1919
    20     public static String name = marktr("Load layer from cache");
     20    public static final String name = marktr("Load layer from cache");
    2121
     22    /**
     23     * Constructs a new {@code MenuActionLoadFromCache}.
     24     */
    2225    public MenuActionLoadFromCache() {
    2326        super(tr(name), "cadastre_small", tr("Load location from cache (only if cache is enabled)"), null, false, "cadastrefr/loadfromcache", true);
     
    3639            if (file.exists()) {
    3740                String filename = file.getName();
    38                 String ext = (filename.lastIndexOf(".")==-1)?"":filename.substring(filename.lastIndexOf(".")+1,filename.length());
    39                 if ((ext.length() == 3 && ext.substring(0, CacheControl.cLambertCC9Z.length()).equals(CacheControl.cLambertCC9Z) &&
     41                String ext = (filename.lastIndexOf('.')==-1)?"":filename.substring(filename.lastIndexOf('.')+1,filename.length());
     42                if ((ext.length() == 3 && ext.substring(0, CacheControl.C_LAMBERT_CC_9Z.length()).equals(CacheControl.C_LAMBERT_CC_9Z) &&
    4043                    !(CadastrePlugin.isLambert_cc9()))
    41                     || (ext.length() == 4 && ext.substring(0, CacheControl.cUTM20N.length()).equals(CacheControl.cUTM20N) &&
     44                    || (ext.length() == 4 && ext.substring(0, CacheControl.C_UTM20N.length()).equals(CacheControl.C_UTM20N) &&
    4245                            !(CadastrePlugin.isUtm_france_dom()))
    4346                    || (ext.length() == 1) && !(CadastrePlugin.isLambert())) {
     
    4548                        continue;
    4649                } else {
    47                     String location = filename.substring(0, filename.lastIndexOf("."));
    48                     if (ext.length() == 3 && ext.substring(0, CacheControl.cLambertCC9Z.length()).equals(CacheControl.cLambertCC9Z))
     50                    String location = filename.substring(0, filename.lastIndexOf('.'));
     51                    if (ext.length() == 3 && ext.substring(0, CacheControl.C_LAMBERT_CC_9Z.length()).equals(CacheControl.C_LAMBERT_CC_9Z))
    4952                        ext = ext.substring(2);
    50                     else if (ext.length() == 4 && ext.substring(0, CacheControl.cUTM20N.length()).equals(CacheControl.cUTM20N))
     53                    else if (ext.length() == 4 && ext.substring(0, CacheControl.C_UTM20N.length()).equals(CacheControl.C_UTM20N))
    5154                        ext = ext.substring(3);
    5255                    // check the extension and its compatibility with current projection
Note: See TracChangeset for help on using the changeset viewer.