| 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 7352af778d98d48edd8b1d19d1456520e412af91..b336f7435041fbffb28aeb4bcac38264ab189dcb 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};
|
| });
|
|
|