mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-23 10:25:00 +00:00
10 lines
175 B
Java
10 lines
175 B
Java
package pkg;
|
|
|
|
public class Usage {
|
|
private ClassWithSynchronized test;
|
|
|
|
// Prevent "The value of the field Usage.test is not used"
|
|
public void test() {
|
|
test.test();
|
|
}
|
|
} |