Fix linting issues

This commit is contained in:
GaborFarkas
2017-06-23 21:12:27 +02:00
parent b3407b0554
commit 619e85e737
3 changed files with 52 additions and 52 deletions

View File

@@ -397,12 +397,12 @@ if (ol.ENABLE_WEBGL) {
}
// continue with the next feature
start = (featureIndex === this.startIndices.length - 1) ?
groupEnd : this.startIndices[featureIndex + 1];
groupEnd : this.startIndices[featureIndex + 1];
end = start;
} else {
// the feature is not skipped, augment the end index
end = (featureIndex === this.startIndices.length - 1) ?
groupEnd : this.startIndices[featureIndex + 1];
groupEnd : this.startIndices[featureIndex + 1];
}
featureIndex++;
}