mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-08 22:30:02 +07:00
11 lines
204 B
Java
11 lines
204 B
Java
// "Bind constructor parameters to fields" "false"
|
|
|
|
class Test {
|
|
private final String value;
|
|
|
|
Test(String <caret>input) {
|
|
String processed = input.toUpperCase();
|
|
this.value = processed;
|
|
}
|
|
}
|