Remove unnecessary newlines

This commit is contained in:
Frederic Junod
2014-08-12 17:01:32 +02:00
parent 59826ce490
commit 0f4e56978b
4 changed files with 4 additions and 8 deletions
+1 -2
View File
@@ -94,8 +94,7 @@ ol.format.TopoJSON.concatenateArcs_ = function(indices, arcs) {
* @return {ol.geom.Point} Geometry.
* @private
*/
ol.format.TopoJSON.readPointGeometry_ =
function(object, scale, translate) {
ol.format.TopoJSON.readPointGeometry_ = function(object, scale, translate) {
var coordinates = object.coordinates;
if (!goog.isNull(scale) && !goog.isNull(translate)) {
ol.format.TopoJSON.transformVertex_(coordinates, scale, translate);