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 2017/08/21 09:12:07 UTC

[12/28] git commit: [flex-asjs] [refs/heads/feature/dragAndDrop] - Fix typo in import of KeyboardEvent

Fix typo in import of KeyboardEvent


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

Branch: refs/heads/feature/dragAndDrop
Commit: 2950a794ee83d0c5436f99861ed317d1e390dc2c
Parents: 1d4eb63
Author: piotrz <pi...@apache.org>
Authored: Tue Aug 15 13:18:14 2017 +0200
Committer: piotrz <pi...@apache.org>
Committed: Tue Aug 15 13:18:14 2017 +0200

----------------------------------------------------------------------
 .../flex/org/apache/flex/html/beads/DispatchInputFinishedBead.as   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/2950a794/frameworks/projects/Basic/src/main/flex/org/apache/flex/html/beads/DispatchInputFinishedBead.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/Basic/src/main/flex/org/apache/flex/html/beads/DispatchInputFinishedBead.as b/frameworks/projects/Basic/src/main/flex/org/apache/flex/html/beads/DispatchInputFinishedBead.as
index 7b932e2..f83ed16 100644
--- a/frameworks/projects/Basic/src/main/flex/org/apache/flex/html/beads/DispatchInputFinishedBead.as
+++ b/frameworks/projects/Basic/src/main/flex/org/apache/flex/html/beads/DispatchInputFinishedBead.as
@@ -28,7 +28,7 @@ package org.apache.flex.html.beads
 	COMPILE::JS
 		{
 			import org.apache.flex.core.IRenderedObject;
-			import org.org.apache.flex.events.KeyboardEvent;
+			import org.apache.flex.events.KeyboardEvent;
 			import goog.events;
 		}