change indentation.
This commit is contained in:
@@ -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;
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user