Skip to content

Commit 2f16f68

Browse files
committed
Fix modifiers.
1 parent 014d098 commit 2f16f68

File tree

1 file changed

+5
-5
lines changed
  • byte-buddy-dep/src/main/java/net/bytebuddy/asm

1 file changed

+5
-5
lines changed

byte-buddy-dep/src/main/java/net/bytebuddy/asm/Advice.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3904,27 +3904,27 @@ protected enum Factory implements OffsetMapping.Factory<DynamicConstant> {
39043904
/**
39053905
* The {@link DynamicConstant#bootstrapType()} method.
39063906
*/
3907-
protected static final MethodDescription.InDefinedShape BOOTSTRAP_TYPE;
3907+
private static final MethodDescription.InDefinedShape BOOTSTRAP_TYPE;
39083908

39093909
/**
39103910
* The {@link DynamicConstant#bootstrapOwner()} method.
39113911
*/
3912-
protected static final MethodDescription.InDefinedShape BOOTSTRAP_OWNER;
3912+
private static final MethodDescription.InDefinedShape BOOTSTRAP_OWNER;
39133913

39143914
/**
39153915
* The {@link DynamicConstant#bootstrapName()} method.
39163916
*/
3917-
protected static final MethodDescription.InDefinedShape BOOTSTRAP_NAME;
3917+
private static final MethodDescription.InDefinedShape BOOTSTRAP_NAME;
39183918

39193919
/**
39203920
* The {@link DynamicConstant#bootstrapReturnType()} method.
39213921
*/
3922-
protected static final MethodDescription.InDefinedShape BOOTSTRAP_RETURN_TYPE;
3922+
private static final MethodDescription.InDefinedShape BOOTSTRAP_RETURN_TYPE;
39233923

39243924
/**
39253925
* The {@link DynamicConstant#bootstrapParameterTypes()} method.
39263926
*/
3927-
protected static final MethodDescription.InDefinedShape BOOTSTRAP_PARAMETER_TYPES;
3927+
private static final MethodDescription.InDefinedShape BOOTSTRAP_PARAMETER_TYPES;
39283928

39293929
/**
39303930
* The {@link DynamicConstant#invokedynamic()} method.

0 commit comments

Comments
 (0)