mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-28 06:21:43 +00:00
3d0beec38d
You really shouldn’t name any fields builder or toString, though.
6 lines
86 B
Java
6 lines
86 B
Java
@lombok.Builder
|
|
public class BuilderWithBadNames {
|
|
String build;
|
|
String toString;
|
|
}
|