Changeset 8811 in josm for trunk/src/org/openstreetmap/josm/tools
- Timestamp:
- 2015-10-01T21:06:10+02:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/tools/template_engine/TemplateParser.java
r8509 r8811 90 90 try { 91 91 result.getEntries().add(new SearchExpressionCondition( 92 SearchCompiler.compile(searchExpression.getText() , false, false), condition));92 SearchCompiler.compile(searchExpression.getText()), condition)); 93 93 } catch (org.openstreetmap.josm.actions.search.SearchCompiler.ParseError e) { 94 94 throw new ParseError(searchExpression.getPosition(), e); … … 119 119 else { 120 120 try { 121 Match match = SearchCompiler.compile(searchExpression.getText() , false, false);121 Match match = SearchCompiler.compile(searchExpression.getText()); 122 122 result = new ContextSwitchTemplate(match, template, searchExpression.getPosition()); 123 123 } catch (org.openstreetmap.josm.actions.search.SearchCompiler.ParseError e) {
Note:
See TracChangeset
for help on using the changeset viewer.