Skip to content

Commit

Permalink
fixed merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
Rob Austin committed Apr 6, 2023
1 parent 93a369f commit cf278e0
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ public class VanillaMethodWriterBuilder<T> implements Builder<T>, MethodWriterBu

private final MethodWriterClassNameGenerator methodWriterClassNameGenerator;
private final String packageName;
private final MethodWriterClassNameGenerator methodWriterClassNameGenerator;
private ClassLoader classLoader;
@NotNull
private final MethodWriterInvocationHandlerSupplier handlerSupplier;
Expand All @@ -87,7 +86,6 @@ public VanillaMethodWriterBuilder(@NotNull Class<T> tClass,
this.classLoader = clsLdr != null ? clsLdr : getClass().getClassLoader();
this.methodWriterClassNameGenerator = new MethodWriterClassNameGenerator();
this.handlerSupplier = new MethodWriterInvocationHandlerSupplier(handlerSupplier);
this.methodWriterClassNameGenerator = new MethodWriterClassNameGenerator();
}

@NotNull
Expand Down Expand Up @@ -168,7 +166,7 @@ public VanillaMethodWriterBuilder<T> wireType(final WireType wireType) {
@NotNull
private String getClassName() {

return methodWriterClassNameGenerator.getClassName(interfaces, genericEvent, metaData, updateInterceptor != null, wireType(),verboseTypes);
return methodWriterClassNameGenerator.getClassName(interfaces, genericEvent, metaData, updateInterceptor != null, wireType(), verboseTypes);

}

Expand Down

0 comments on commit cf278e0

Please sign in to comment.