Skip to content

Commit

Permalink
Rename base reflection rules class
Browse files Browse the repository at this point in the history
  • Loading branch information
jpenilla committed Feb 12, 2024
1 parent d32c598 commit a8cbd23
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
import java.util.List;
import java.util.Set;

public final class BuiltInReflectionRules {
public final class BaseReflectionRules {
private final String proxy;
private final RewriteRule classRule;
private final RewriteRule methodHandlesLookupRule;
private final RewriteRule lambdaMetafactoryRule;
private final RewriteRule constantBootstrapsRule;
private final RewriteRule methodTypeRule;

public BuiltInReflectionRules(final String proxyClassName) {
public BaseReflectionRules(final String proxyClassName) {
this.proxy = proxyClassName;
this.classRule = this.createClassRule();
this.methodHandlesLookupRule = this.createMethodHandlesLookupRule();
Expand Down

0 comments on commit a8cbd23

Please sign in to comment.