< prev index next >

src/java.base/share/classes/java/text/DecimalFormat.java

Print this page

        

@@ -2209,11 +2209,11 @@
      * whether the value was infinite and whether it was positive.
      */
     private final boolean subparse(String text, ParsePosition parsePosition,
                    String positivePrefix, String negativePrefix,
                    DigitList digits, boolean isExponent,
-                   boolean status[]) {
+                   boolean[] status) {
         int position = parsePosition.index;
         int oldStart = parsePosition.index;
         int backup;
         boolean gotPositive, gotNegative;
 
< prev index next >