|
|
|
|
|
by mrkeen
1300 days ago
|
|
I get a little green tick in the top right of my IDE window with the following: @Test
public void foo() {
final Map<String, Integer> map = new HashMap<>();
map.put("present", 1);
bar(map.get("missing"));
}
void bar(@NotNull Integer param) {
System.out.println(param);
}
"No problems found" |
|