Skip to content

Commit

Permalink
Using a safer marker bit for type annotations already handled for fie…
Browse files Browse the repository at this point in the history
…ld inits.
  • Loading branch information
lahodaj committed Jan 8, 2025
1 parent 475f5ec commit 3722b4f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ public static EnumSet<Flag> asFlagSet(long flags) {
/**
* Flag to indicate type annotations have been queued for field initializers.
*/
public static final long FIELD_INIT_TYPE_ANNOTATIONS_QUEUED = 1L<<62; // VarSymbols
public static final long FIELD_INIT_TYPE_ANNOTATIONS_QUEUED = 1L<<53; // VarSymbols

/**
* Flag to indicate that the class/interface was declared with the non-sealed modifier.
Expand Down

0 comments on commit 3722b4f

Please sign in to comment.