change indentation.

This commit is contained in:
Marc Jansen
2012-06-19 10:49:44 +02:00
parent 90f33c587a
commit c04ae35498
+8 -8
View File
@@ -7,11 +7,11 @@ goog.provide('ol.Projection');
*/ */
ol.Projection = function() { ol.Projection = function() {
/** /**
* @private * @private
* @type {string|undefined} * @type {string|undefined}
*/ */
this.code_ = undefined; this.code_ = undefined;
}; };
@@ -20,7 +20,7 @@ ol.Projection = function() {
* @return {string|undefined} Code. * @return {string|undefined} Code.
*/ */
ol.Projection.prototype.getCode = function() { ol.Projection.prototype.getCode = function() {
return this.code_; return this.code_;
}; };
@@ -29,6 +29,6 @@ ol.Projection.prototype.getCode = function() {
* @return {ol.Projection} This. * @return {ol.Projection} This.
*/ */
ol.Projection.prototype.setCode = function(code) { ol.Projection.prototype.setCode = function(code) {
this.code_ = code; this.code_ = code;
return this; return this;
}; };