Changeset 34734 in osm for applications/editors/josm/plugins/indoorhelper/src/model
- Timestamp:
- 2018-11-22T00:21:27+01:00 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/indoorhelper/src/model/IndoorLevel.java
r34309 r34734 122 122 //Extract values 123 123 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; 125 125 secVal = Integer.parseInt(val.split("-", 2)[1].split("-", 2)[1]); 126 126 } else if (val.contains("-")) {
Note:
See TracChangeset
for help on using the changeset viewer.