mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 20:33:31 +07:00
GitOrigin-RevId: 8879b800315a194e8e04e9e0e6f7ca1b5b5205bc
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;
|
|
}
|
|
}
|