mirror of
https://github.com/tiennm99/lombok.git
synced 2026-09-07 08:17:17 +00:00
Fix class names in before
This commit is contained in:
@@ -1,12 +1,12 @@
|
||||
import lombok.Builder;
|
||||
|
||||
class BuilderWithExistingBuilderClass<T, K extends Number> {
|
||||
class BuilderWithExistingBuilderClassWithSetterPrefix<T, K extends Number> {
|
||||
@Builder(setterPrefix = "with")
|
||||
public static <Z extends Number> BuilderWithExistingBuilderClass<String, Z> staticMethod(Z arg1, boolean arg2, String arg3) {
|
||||
public static <Z extends Number> BuilderWithExistingBuilderClassWithSetterPrefix<String, Z> staticMethod(Z arg1, boolean arg2, String arg3) {
|
||||
return null;
|
||||
}
|
||||
|
||||
public static class BuilderWithExistingBuilderClassBuilder<Z extends Number> {
|
||||
public static class BuilderWithExistingBuilderClassBuilderWithSetterPrefix<Z extends Number> {
|
||||
private Z arg1;
|
||||
|
||||
public void withArg2(boolean arg) {
|
||||
|
||||
Reference in New Issue
Block a user