Merge pull request #2545 from fredj/cleanup

Miscellaneous coding style fixes
This commit is contained in:
Frédéric Junod
2014-08-21 07:44:07 +02:00
6 changed files with 6 additions and 14 deletions

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);