Skip to content

Commit

Permalink
Fix modifiers.
Browse files Browse the repository at this point in the history
  • Loading branch information
raphw committed Jan 29, 2025
1 parent 014d098 commit 2f16f68
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions byte-buddy-dep/src/main/java/net/bytebuddy/asm/Advice.java
Original file line number Diff line number Diff line change
Expand Up @@ -3904,27 +3904,27 @@ protected enum Factory implements OffsetMapping.Factory<DynamicConstant> {
/**
* The {@link DynamicConstant#bootstrapType()} method.
*/
protected static final MethodDescription.InDefinedShape BOOTSTRAP_TYPE;
private static final MethodDescription.InDefinedShape BOOTSTRAP_TYPE;

/**
* The {@link DynamicConstant#bootstrapOwner()} method.
*/
protected static final MethodDescription.InDefinedShape BOOTSTRAP_OWNER;
private static final MethodDescription.InDefinedShape BOOTSTRAP_OWNER;

/**
* The {@link DynamicConstant#bootstrapName()} method.
*/
protected static final MethodDescription.InDefinedShape BOOTSTRAP_NAME;
private static final MethodDescription.InDefinedShape BOOTSTRAP_NAME;

/**
* The {@link DynamicConstant#bootstrapReturnType()} method.
*/
protected static final MethodDescription.InDefinedShape BOOTSTRAP_RETURN_TYPE;
private static final MethodDescription.InDefinedShape BOOTSTRAP_RETURN_TYPE;

/**
* The {@link DynamicConstant#bootstrapParameterTypes()} method.
*/
protected static final MethodDescription.InDefinedShape BOOTSTRAP_PARAMETER_TYPES;
private static final MethodDescription.InDefinedShape BOOTSTRAP_PARAMETER_TYPES;

/**
* The {@link DynamicConstant#invokedynamic()} method.
Expand Down

0 comments on commit 2f16f68

Please sign in to comment.