Consistent curly brace style

This commit is contained in:
Tim Schaub
2016-01-04 20:05:03 -07:00
parent ec10b661f3
commit 54df314936
5 changed files with 11 additions and 12 deletions

View File

@@ -78,7 +78,9 @@ ol.source.Raster = function(options) {
* @type {ol.TileQueue}
*/
this.tileQueue_ = new ol.TileQueue(
function() { return 1; },
function() {
return 1;
},
goog.bind(this.changed, this));
var layerStatesArray = ol.source.Raster.getLayerStatesArray_(this.renderers_);