| Index: chrome/browser/resources/print_preview/data/coordinate2d.js
|
| diff --git a/chrome/browser/resources/print_preview/data/coordinate2d.js b/chrome/browser/resources/print_preview/data/coordinate2d.js
|
| index 4b10af63808508e18669be00dfaab9f0d1986602..021341e162a9bf104d0246b4771733485048fd40 100644
|
| --- a/chrome/browser/resources/print_preview/data/coordinate2d.js
|
| +++ b/chrome/browser/resources/print_preview/data/coordinate2d.js
|
| @@ -63,14 +63,10 @@ cr.define('print_preview', function() {
|
| * @return {boolean} Whether another point is equal to this one.
|
| */
|
| equals: function(other) {
|
| - return other != null &&
|
| - this.x_ == other.x_ &&
|
| - this.y_ == other.y_;
|
| + return other != null && this.x_ == other.x_ && this.y_ == other.y_;
|
| }
|
| };
|
|
|
| // Export
|
| - return {
|
| - Coordinate2d: Coordinate2d
|
| - };
|
| + return {Coordinate2d: Coordinate2d};
|
| });
|
|
|