mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 09:20:53 +07:00
13 lines
229 B
Java
13 lines
229 B
Java
// "Create field for parameter 'val'" "true-preview"
|
|
|
|
import java.util.Objects;
|
|
|
|
class Test{
|
|
String s;
|
|
|
|
public void Test(String <caret>val, String message) {
|
|
s = Objects.requireNonNull(message, val);
|
|
}
|
|
}
|
|
|