You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by pe...@apache.org on 2014/09/08 22:00:02 UTC

git commit: [flex-asjs] [refs/heads/develop] - gjslint uncovered a couple more issues.

Repository: flex-asjs
Updated Branches:
  refs/heads/develop 1bfdcb2e6 -> 50a88b52d


gjslint uncovered a couple more issues.


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/50a88b52
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/50a88b52
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/50a88b52

Branch: refs/heads/develop
Commit: 50a88b52dc9251867e2c487676b88b9845bd2a81
Parents: 1bfdcb2
Author: Peter Ent <pe...@apache.org>
Authored: Mon Sep 8 15:59:58 2014 -0400
Committer: Peter Ent <pe...@apache.org>
Committed: Mon Sep 8 15:59:58 2014 -0400

----------------------------------------------------------------------
 frameworks/js/FlexJS/src/org/apache/flex/core/graphics/Circle.js  | 2 +-
 frameworks/js/FlexJS/src/org/apache/flex/core/graphics/Ellipse.js | 2 +-
 frameworks/js/FlexJS/src/org/apache/flex/core/graphics/Path.js    | 2 +-
 frameworks/js/FlexJS/src/org/apache/flex/core/graphics/Rect.js    | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/50a88b52/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/Circle.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/Circle.js b/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/Circle.js
index ecf9afd..3d26b5a 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/Circle.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/Circle.js
@@ -57,4 +57,4 @@ org.apache.flex.core.graphics.Circle.prototype.drawCircle = function(x, y, radiu
     this.element.appendChild(circle);
 //  this.resize(x-radius,y-radius,radius*2+this.get_stroke().get_weight()*2,radius*2+this.get_stroke().get_weight()*2);
     this.setPosition(x - radius + this.get_stroke().get_weight(), y - radius + this.get_stroke().get_weight());
-};
+  };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/50a88b52/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/Ellipse.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/Ellipse.js b/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/Ellipse.js
index 4c41191..67ed4e2 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/Ellipse.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/Ellipse.js
@@ -57,4 +57,4 @@ org.apache.flex.core.graphics.Ellipse.prototype.drawEllipse = function(x, y, wid
     ellipse.setAttribute('ry', String(height / 2));
     this.element.appendChild(ellipse);
     this.setPosition(x + this.get_stroke().get_weight(), y + this.get_stroke().get_weight());
-};
+  };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/50a88b52/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/Path.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/Path.js b/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/Path.js
index 9867771..441afb6 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/Path.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/Path.js
@@ -59,4 +59,4 @@ org.apache.flex.core.graphics.Path.prototype.drawPath = function(x, y, data) {
     path.setAttribute('d', data);
     this.element.appendChild(path);
     this.setPosition(x + this.get_stroke().get_weight(), y + this.get_stroke().get_weight());
-};
+  };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/50a88b52/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/Rect.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/Rect.js b/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/Rect.js
index be79982..b2ec8e0 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/Rect.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/Rect.js
@@ -57,4 +57,4 @@ org.apache.flex.core.graphics.Rect.prototype.drawRect = function(x, y, width, he
     rect.setAttribute('height', String(height));
     this.element.appendChild(rect);
     this.setPosition(x + this.get_stroke().get_weight(), y + this.get_stroke().get_weight());
-};
+  };