Ignore:
Timestamp:
2016-03-12T23:18:04+01:00 (8 years ago)
Author:
Don-vip
Message:

sonar - remove useless parentheses

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/validation/util/Entities.java

    r8848 r9970  
    393393                        }
    394394                        String value = mapNameToValue.get(entityContent);
    395                         entityValue = (value == null ? -1 : Integer.parseInt(value));
     395                        entityValue = value == null ? -1 : Integer.parseInt(value);
    396396                    }
    397397                }
Note: See TracChangeset for help on using the changeset viewer.