mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 14:05:32 +00:00
parent
340271c225
commit
dd87efa299
1 changed files with 2 additions and 1 deletions
|
@ -4,6 +4,7 @@ package com.ibm.icu.impl.units;
|
|||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collections;
|
||||
import java.util.Comparator;
|
||||
|
||||
import com.ibm.icu.util.BytesTrie;
|
||||
|
@ -224,7 +225,7 @@ public class MeasureUnitImpl {
|
|||
}
|
||||
if (this.complexity == MeasureUnit.Complexity.COMPOUND) {
|
||||
// Note: don't sort a MIXED unit
|
||||
this.getSingleUnits().sort(new SingleUnitComparator());
|
||||
Collections.sort(this.getSingleUnits(), new SingleUnitComparator());
|
||||
}
|
||||
|
||||
StringBuilder result = new StringBuilder();
|
||||
|
|
Loading…
Add table
Reference in a new issue