mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-31 04:07:30 +07:00
for "Null check can be replaced with method call" inspection GitOrigin-RevId: ffa45cce88afb341cdeb9a49d4ee256251865bfc
14 lines
265 B
Java
14 lines
265 B
Java
// "Replace 'if' statement with 'Stream.ofNullable()' call" "true"
|
|
|
|
import java.util.*;
|
|
import java.util.stream.Stream;
|
|
|
|
class Util {
|
|
String method(String s) {return s;}
|
|
}
|
|
|
|
class Test {
|
|
public Stream test(Object val) {
|
|
return Stream.ofNullable(val);
|
|
}
|
|
} |