Ignore:
Timestamp:
2018-11-22T00:21:27+01:00 (6 years ago)
Author:
donvip
Message:

fix warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/indoorhelper/src/model/IndoorLevel.java

    r34309 r34734  
    122122            //Extract values
    123123            if (val.indexOf("-") == 0) {
    124                 firstVal = (Integer.parseInt(val.split("-", 2)[1].split("-", 2)[0]))*-1;
     124                firstVal = Integer.parseInt(val.split("-", 2)[1].split("-", 2)[0])*-1;
    125125                secVal = Integer.parseInt(val.split("-", 2)[1].split("-", 2)[1]);
    126126            } else if (val.contains("-")) {
Note: See TracChangeset for help on using the changeset viewer.