- Timestamp:
- 2021-04-14T20:00:39+02:00 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/mappaint/mapcss/Selector.java
r17583 r17781 18 18 import java.util.function.IntFunction; 19 19 import java.util.function.IntSupplier; 20 import java.util.regex.PatternSyntaxException;21 20 import java.util.stream.Collectors; 22 21 … … 657 656 try { 658 657 if (!c.applies(env)) return false; 659 } catch ( PatternSyntaxException e) {660 Logging.log(Logging.LEVEL_ERROR, " PatternSyntaxException while applying condition" + c + ':', e);658 } catch (RuntimeException e) { 659 Logging.log(Logging.LEVEL_ERROR, "Exception while applying condition" + c + ':', e); 661 660 return false; 662 661 }
Note:
See TracChangeset
for help on using the changeset viewer.