jdk/src/share/classes/java/text/DecimalFormat.java
changeset 10419 12c063b39232
parent 7003 7d8d9506b4ee
child 12848 da701d422d2c
--- a/jdk/src/share/classes/java/text/DecimalFormat.java	Tue Aug 30 14:41:12 2011 +0100
+++ b/jdk/src/share/classes/java/text/DecimalFormat.java	Tue Aug 30 11:53:11 2011 -0700
@@ -1891,14 +1891,10 @@
      * Standard override; no change in semantics.
      */
     public Object clone() {
-        try {
-            DecimalFormat other = (DecimalFormat) super.clone();
-            other.symbols = (DecimalFormatSymbols) symbols.clone();
-            other.digitList = (DigitList) digitList.clone();
-            return other;
-        } catch (Exception e) {
-            throw new InternalError();
-        }
+        DecimalFormat other = (DecimalFormat) super.clone();
+        other.symbols = (DecimalFormatSymbols) symbols.clone();
+        other.digitList = (DigitList) digitList.clone();
+        return other;
     }
 
     /**