mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 06:11:42 +07:00
inspection to detect code replacable with putIfAbsent is rewritten
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
// "Replace with 'putIfAbsent' method call" "true"
|
||||
import java.util.Map;
|
||||
class Test {
|
||||
void m1111(Map<String, Integer> map) {
|
||||
int i = !map.containsKey("asd") ? map.<caret>put("asd", 123) : map.get("asd");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user