mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-23 18:03:06 +07:00
13 lines
265 B
Java
13 lines
265 B
Java
import org.jetbrains.annotations.Contract;
|
|
|
|
public class Foo {
|
|
|
|
String foo(Object escaper, String s) {
|
|
return escapeStr(s, escaper);
|
|
}
|
|
|
|
@Contract("null,_->null;!null,_->!null")
|
|
String escapeStr(String s, Object o) {
|
|
return s;
|
|
}
|
|
} |