Repository: flex-falcon
Updated Branches:
  refs/heads/feature/maven-migration f74063cae -> 03b5a2c8e


- Replaced the internal api NotImplementedException with the default 
UnsupportedOperationException


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

Branch: refs/heads/feature/maven-migration
Commit: 4b9b348157f6e9507a704050e764fa84e111ef3c
Parents: 2741581
Author: Christofer Dutz <christofer.d...@codecentric.de>
Authored: Sun Mar 27 16:23:10 2016 +0200
Committer: Christofer Dutz <christofer.d...@codecentric.de>
Committed: Sun Mar 27 16:23:10 2016 +0200

----------------------------------------------------------------------
 compiler.jx/src/org/apache/flex/compiler/clients/COMPJSC.java | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/4b9b3481/compiler.jx/src/org/apache/flex/compiler/clients/COMPJSC.java
----------------------------------------------------------------------
diff --git a/compiler.jx/src/org/apache/flex/compiler/clients/COMPJSC.java 
b/compiler.jx/src/org/apache/flex/compiler/clients/COMPJSC.java
index 33e662e..b3b9c64 100644
--- a/compiler.jx/src/org/apache/flex/compiler/clients/COMPJSC.java
+++ b/compiler.jx/src/org/apache/flex/compiler/clients/COMPJSC.java
@@ -53,8 +53,6 @@ import org.apache.flex.compiler.targets.ITarget.TargetType;
 import org.apache.flex.compiler.targets.ITargetSettings;
 import org.apache.flex.compiler.units.ICompilationUnit;
 
-import sun.reflect.generics.reflectiveObjects.NotImplementedException;
-
 /**
  * @author Erik de Bruin
  * @author Michael Schmalle
@@ -144,7 +142,7 @@ public class COMPJSC extends MXMLJSC
                     break;
 
                 default:
-                    throw new NotImplementedException();
+                    throw new UnsupportedOperationException();
                 }
             }
         }

Reply via email to