99import java .util .function .Supplier ;
1010import java .util .stream .Collectors ;
1111import org .unicode .cldr .icu .dev .test .TestFmwk ;
12- import org .unicode .cldr .util .NestedMap .ImmutableNestedMap3 ;
13- import org .unicode .cldr .util .NestedMap .NestedMap3 ;
12+ import org .unicode .cldr .util .NestedMap .ImmutableMap3 ;
13+ import org .unicode .cldr .util .NestedMap .Map3 ;
1414
1515public class NestedMapTest extends TestFmwk {
1616
@@ -49,7 +49,7 @@ public void testCore() {
4949 // Level 3: Integer (Year)
5050 // Value: Double (Sales Amount)
5151 for (MapType tt : MapType .values ()) {
52- NestedMap3 <String , String , Integer , Double > salesData = NestedMap3 .create (tt .supplier );
52+ Map3 <String , String , Integer , Double > salesData = Map3 .create (tt .supplier );
5353
5454 // --- Type-Safe PUT operations ---
5555 salesData .put ("South America" , "Widget" , 2024 , 150000.75 );
@@ -62,7 +62,7 @@ public void testCore() {
6262 String streamTest = tryOperations (tt , Mutability .mutable , salesData , null );
6363
6464 // Immutable
65- ImmutableNestedMap3 <String , String , Integer , Double > salesDataIM =
65+ ImmutableMap3 <String , String , Integer , Double > salesDataIM =
6666 salesData .createImmutable ();
6767 tryOperations (tt , Mutability .immutable , salesDataIM , streamTest );
6868 }
@@ -71,7 +71,7 @@ public void testCore() {
7171 private String tryOperations (
7272 MapType tt ,
7373 Mutability mutability ,
74- NestedMap3 <String , String , Integer , Double > salesData ,
74+ Map3 <String , String , Integer , Double > salesData ,
7575 String streamTest ) {
7676
7777 logln (tt + ", " + mutability );
0 commit comments