Ignore:
Timestamp:
2018-09-15T13:50:24+02:00 (6 years ago)
Author:
donvip
Message:

fix UnnecessaryParentheses warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/seachart/src/render/Signals.java

    r34237 r34652  
    125125                        case BCNSAW:
    126126                        case BCNSPP:
    127                                 if ((feature.objs.containsKey(Obj.TOPMAR)) || (feature.objs.containsKey(Obj.DAYMAR))) {
     127                                if (feature.objs.containsKey(Obj.TOPMAR) || feature.objs.containsKey(Obj.DAYMAR)) {
    128128                                        Renderer.symbol(Topmarks.RadarReflector, new Delta(Handle.BC, AffineTransform.getTranslateInstance(0, -140)));
    129129                                } else {
     
    134134                        case LITVES:
    135135                        case BOYINB:
    136                                 if ((feature.objs.containsKey(Obj.TOPMAR)) || (feature.objs.containsKey(Obj.DAYMAR))) {
     136                                if (feature.objs.containsKey(Obj.TOPMAR) || feature.objs.containsKey(Obj.DAYMAR)) {
    137137                                        Renderer.symbol(Topmarks.RadarReflector, new Delta(Handle.BC, AffineTransform.getTranslateInstance(0, -110)));
    138138                                } else {
     
    142142                        case LITMAJ:
    143143                        case LITMIN:
    144                                 if ((feature.objs.containsKey(Obj.TOPMAR)) || (feature.objs.containsKey(Obj.DAYMAR))) {
     144                                if (feature.objs.containsKey(Obj.TOPMAR) || feature.objs.containsKey(Obj.DAYMAR)) {
    145145                                        Renderer.symbol(Topmarks.RadarReflector, new Delta(Handle.BC, AffineTransform.getTranslateInstance(0, -90)));
    146146                                } else {
     
    153153                        case BOYSAW:
    154154                        case BOYSPP:
    155                                 if ((feature.objs.containsKey(Obj.TOPMAR)) || (feature.objs.containsKey(Obj.DAYMAR))) {
     155                                if (feature.objs.containsKey(Obj.TOPMAR) || feature.objs.containsKey(Obj.DAYMAR)) {
    156156                                        if (testAttribute(feature.type, Att.BOYSHP, BoySHP.BOY_PILR) || testAttribute(feature.type, Att.BOYSHP, BoySHP.BOY_SPAR)) {
    157157                                                Renderer.symbol(Topmarks.RadarReflector, new Delta(Handle.BC, AffineTransform.getTranslateInstance(50, -160)));
     
    181181                                String str = "";
    182182                                if (atts.containsKey(Att.CATFOG)) {
    183                                         str += fogSignals.get(((ArrayList<?>) (atts.get(Att.CATFOG).val)).get(0));
     183                                        str += fogSignals.get(((ArrayList<?>) atts.get(Att.CATFOG).val).get(0));
    184184                                }
    185185                                if (atts.containsKey(Att.SIGGRP)) {
     
    440440                                                                                continue;
    441441                                                                        if (srad == radius) {
    442                                                                                 ArrayList<CatLIT> scats = (ArrayList<CatLIT>) ((satts.containsKey(Att.CATLIT)) ? (ArrayList<CatLIT>) satts.get(Att.CATLIT).val : new ArrayList<>());
     442                                                                                ArrayList<CatLIT> scats = (ArrayList<CatLIT>) (satts.containsKey(Att.CATLIT) ? (ArrayList<CatLIT>) satts.get(Att.CATLIT).val : new ArrayList<>());
    443443                                                                                if (scats.contains(CatLIT.LIT_DIR)) {
    444444                                                                                        if (satts.containsKey(Att.ORIENT)) {
     
    557557                                                for (ArrayList<LitSect> group : groupings) {
    558558                                                        LitSect mem = group.get(0);
    559                                                         if ((lit.dir == mem.dir) && (lit.chr == mem.chr) && (lit.grp.equals(mem.grp)) && (lit.per == mem.per) && (lit.hgt == mem.hgt)) {
     559                                                        if (lit.dir == mem.dir && lit.chr == mem.chr && lit.grp.equals(mem.grp) && lit.per == mem.per && lit.hgt == mem.hgt) {
    560560                                                                group.add(lit);
    561561                                                                found = true;
     
    616616                                                }
    617617                                                LitSect tmp = group.get(0);
    618                                                 str = (tmp.dir) ? "Dir" : "";
     618                                                str = tmp.dir ? "Dir" : "";
    619619                                                str += LightCharacters.get(tmp.chr);
    620620                                                if (!tmp.grp.isEmpty())
     
    645645                                                cats = (ArrayList<CatLIT>) atts.get(Att.CATLIT).val;
    646646                                        }
    647                                         str = (cats.contains(CatLIT.LIT_DIR)) ? "Dir" : "";
    648                                         str += (atts.containsKey(Att.MLTYLT)) ? atts.get(Att.MLTYLT).val : "";
     647                                        str = cats.contains(CatLIT.LIT_DIR) ? "Dir" : "";
     648                                        str += atts.containsKey(Att.MLTYLT) ? atts.get(Att.MLTYLT).val : "";
    649649                                        if (atts.containsKey(Att.LITCHR)) {
    650650                                                LitCHR chr = ((ArrayList<LitCHR>) atts.get(Att.LITCHR).val).get(0);
     
    680680                                                }
    681681                                        }
    682                                         str += (cats.contains(CatLIT.LIT_VERT)) ? "(vert)" : "";
    683                                         str += (cats.contains(CatLIT.LIT_HORI)) ? "(hor)" : "";
     682                                        str += cats.contains(CatLIT.LIT_VERT) ? "(vert)" : "";
     683                                        str += cats.contains(CatLIT.LIT_HORI) ? "(hor)" : "";
    684684                                        str += (!str.isEmpty() && (atts.containsKey(Att.SIGPER) || atts.containsKey(Att.HEIGHT) || atts.containsKey(Att.VALMXR)) && !str.endsWith(")")) ? "." : "";
    685                                         str += (atts.containsKey(Att.SIGPER)) ? df.format(atts.get(Att.SIGPER).val) + "s" : "";
    686                                         str += (atts.containsKey(Att.HEIGHT)) ? df.format(atts.get(Att.HEIGHT).val) + "m" : "";
    687                                         str += (atts.containsKey(Att.VALNMR)) ? df.format(atts.get(Att.VALNMR).val) + "M" : "";
    688                                         str += (cats.contains(CatLIT.LIT_FRNT)) ? "(Front)" : "";
    689                                         str += (cats.contains(CatLIT.LIT_REAR)) ? "(Rear)" : "";
    690                                         str += (cats.contains(CatLIT.LIT_UPPR)) ? "(Upper)" : "";
    691                                         str += (cats.contains(CatLIT.LIT_LOWR)) ? "(Lower)" : "";
     685                                        str += atts.containsKey(Att.SIGPER) ? df.format(atts.get(Att.SIGPER).val) + "s" : "";
     686                                        str += atts.containsKey(Att.HEIGHT) ? df.format(atts.get(Att.HEIGHT).val) + "m" : "";
     687                                        str += atts.containsKey(Att.VALNMR) ? df.format(atts.get(Att.VALNMR).val) + "M" : "";
     688                                        str += cats.contains(CatLIT.LIT_FRNT) ? "(Front)" : "";
     689                                        str += cats.contains(CatLIT.LIT_REAR) ? "(Rear)" : "";
     690                                        str += cats.contains(CatLIT.LIT_UPPR) ? "(Upper)" : "";
     691                                        str += cats.contains(CatLIT.LIT_LOWR) ? "(Lower)" : "";
    692692                                        Renderer.labelText(str, new Font("Arial", Font.PLAIN, 40), Color.black, new Delta(Handle.TL, AffineTransform.getTranslateInstance(60, -30)));
    693693                                }
Note: See TracChangeset for help on using the changeset viewer.