You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by go...@apache.org on 2013/06/21 06:05:16 UTC

git commit: [flex-falcon] [refs/heads/develop] - Fixed a multitude of Eclipse warnings in the compiler.jx project by adding a do-nothing default case to a switch

Updated Branches:
  refs/heads/develop fac3415bb -> 99ac76ac3


Fixed a multitude of Eclipse warnings in the compiler.jx project by adding a do-nothing default case to a switch


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

Branch: refs/heads/develop
Commit: 99ac76ac3c81a5449a7fbd1457646abc47d97d04
Parents: fac3415
Author: Gordon Smith <go...@apache.org>
Authored: Thu Jun 20 21:04:48 2013 -0700
Committer: Gordon Smith <go...@apache.org>
Committed: Thu Jun 20 21:04:48 2013 -0700

----------------------------------------------------------------------
 .../compiler/internal/codegen/mxml/flexjs/MXMLFlexJSEmitter.java | 4 ++++
 1 file changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/99ac76ac/compiler.jx/src/org/apache/flex/compiler/internal/codegen/mxml/flexjs/MXMLFlexJSEmitter.java
----------------------------------------------------------------------
diff --git a/compiler.jx/src/org/apache/flex/compiler/internal/codegen/mxml/flexjs/MXMLFlexJSEmitter.java b/compiler.jx/src/org/apache/flex/compiler/internal/codegen/mxml/flexjs/MXMLFlexJSEmitter.java
index c58724d..38b6ab5 100644
--- a/compiler.jx/src/org/apache/flex/compiler/internal/codegen/mxml/flexjs/MXMLFlexJSEmitter.java
+++ b/compiler.jx/src/org/apache/flex/compiler/internal/codegen/mxml/flexjs/MXMLFlexJSEmitter.java
@@ -536,6 +536,10 @@ public class MXMLFlexJSEmitter extends MXMLEmitter implements
                             emitEventOverride((IMXMLEventSpecifierNode)node);
                             break;
                         }
+                        default:
+                        {
+                        	break;
+                        }
                     }
                 }
             }