Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0453145e authored by Roozbeh Pournader's avatar Roozbeh Pournader
Browse files

Fix casting issue in use of ICU Measures in Dialer

Bug: 33670388
Bug: 33750033
Test: manual
Change-Id: I5ed4fd9078ee5c976cda706e0ef73877928db2b1
parent 79d29982
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -47,7 +47,7 @@ public class InCallDateUtils {
            return "";
            return "";
        } else {
        } else {
            return MeasureFormat.getInstance(Locale.getDefault(), FormatWidth.WIDE)
            return MeasureFormat.getInstance(Locale.getDefault(), FormatWidth.WIDE)
                    .formatMeasures((Measure[]) measures.toArray());
                    .formatMeasures(measures.toArray(new Measure[measures.size()]));
        }
        }
    }
    }
}
}