mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-11 20:07:01 +07:00
9 lines
183 B
Java
9 lines
183 B
Java
// "Replace with 'Map.of()' call" "true"
|
|
import java.util.*;
|
|
|
|
public class Test {
|
|
public void test() {
|
|
Map<String, String> myMap;
|
|
myMap = Map.of("a", "b", "c", "b");
|
|
}
|
|
} |