Skip to content

Commit

Permalink
Merge pull request #9 from KaiVolland/update-cql-parser
Browse files Browse the repository at this point in the history
Updates cql parser
  • Loading branch information
KaiVolland committed Jan 29, 2019
2 parents d9ed291 + 46bcd65 commit f72a8e4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"homepage": "https://github.com/terrestris/geostyler-qgis-parser#readme",
"dependencies": {
"geostyler-style": "0.14.2",
"geostyler-cql-parser": "0.1.0",
"geostyler-cql-parser": "0.1.1",
"lodash": "4.17.11",
"xml2js": "0.4.19",
"xmldom": "0.1.27"
Expand Down Expand Up @@ -58,7 +58,7 @@
"np": "4.0.2",
"ts-jest": "23.10.5",
"tslint": "5.12.1",
"typescript": "3.2.2",
"typescript": "3.2.4",
"uglifyjs-webpack-plugin": "2.1.1",
"webpack": "4.29.0",
"webpack-cli": "3.2.1"
Expand Down
2 changes: 1 addition & 1 deletion src/QGISStyleParser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ export class QGISStyleParser implements StyleParser {
*/
getFilterFromQmlRule(qmlRule: QmlRule): Filter | undefined {
const qmlFilter = _get(qmlRule, '$.filter');
let filter: Filter;
let filter;
if (qmlFilter) {
filter = this.cqlParser.read(qmlFilter);
return filter;
Expand Down

0 comments on commit f72a8e4

Please sign in to comment.