Remove unnecessary parentheses

This commit is contained in:
Frederic Junod
2014-09-03 14:28:03 +02:00
parent 6e3a5ca7ca
commit aaeb2b6938
4 changed files with 6 additions and 6 deletions

View File

@@ -112,7 +112,7 @@ ol.interaction.Modify = function(options) {
* @private
*/
this.overlay_ = new ol.FeatureOverlay({
style: (goog.isDef(options.style)) ? options.style :
style: goog.isDef(options.style) ? options.style :
ol.interaction.Modify.getDefaultStyleFunction()
});