mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-23 08:25:23 +00:00
f277791cf0
Eclipse copies the field initializer source code if it is a constant. For generated nodes we have to read it from the ast node and not from the source file.
8 lines
122 B
Java
8 lines
122 B
Java
package pkg;
|
|
|
|
import lombok.experimental.FieldNameConstants;
|
|
|
|
@FieldNameConstants
|
|
public class Constants {
|
|
String test;
|
|
} |