You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by jo...@apache.org on 2014/02/28 10:48:44 UTC

[47/50] git commit: [flex-falcon] [refs/heads/maven] - Prevent already fully qualified class names from being qualified again ; -)

Prevent already fully qualified class names from being qualified again ;-)

Signed-off-by: Erik de Bruin <er...@ixsoftware.nl>


Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/9fdf5bf3
Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/9fdf5bf3
Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/9fdf5bf3

Branch: refs/heads/maven
Commit: 9fdf5bf3a2bd05d60b16db4b5849291dabbc082c
Parents: d2d5f3f
Author: Erik de Bruin <er...@ixsoftware.nl>
Authored: Thu Feb 27 17:05:38 2014 +0100
Committer: Erik de Bruin <er...@ixsoftware.nl>
Committed: Thu Feb 27 17:05:38 2014 +0100

----------------------------------------------------------------------
 .../flex/compiler/internal/codegen/js/goog/JSGoogDocEmitter.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/9fdf5bf3/compiler.jx/src/org/apache/flex/compiler/internal/codegen/js/goog/JSGoogDocEmitter.java
----------------------------------------------------------------------
diff --git a/compiler.jx/src/org/apache/flex/compiler/internal/codegen/js/goog/JSGoogDocEmitter.java b/compiler.jx/src/org/apache/flex/compiler/internal/codegen/js/goog/JSGoogDocEmitter.java
index 1ca5781..a63992f 100644
--- a/compiler.jx/src/org/apache/flex/compiler/internal/codegen/js/goog/JSGoogDocEmitter.java
+++ b/compiler.jx/src/org/apache/flex/compiler/internal/codegen/js/goog/JSGoogDocEmitter.java
@@ -484,7 +484,7 @@ public class JSGoogDocEmitter extends JSDocEmitter implements IJSGoogDocEmitter
         }
 
         if (result == "")
-            result = (pname != "" && !isBuiltinFunction) ? pname
+            result = (pname != "" && !isBuiltinFunction && name.indexOf(".") < 0) ? pname
                     + ASEmitterTokens.MEMBER_ACCESS.getToken() + name : name;
 
         result = result.replace(IASLanguageConstants.String,