Skip to content

Commit

Permalink
Add missing final keyword.
Browse files Browse the repository at this point in the history
  • Loading branch information
raphw committed Jul 11, 2024
1 parent 6dfa7ec commit bebdf16
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2579,7 +2579,7 @@ abstract class WithInnerClassLoadingLock implements CircularityLock {
/**
* The default size of the global class loading lock array.
*/
protected static int DEFAULT_SIZE = 100;
protected static final int DEFAULT_SIZE = 100;

/**
* An additional global lock that avoids circularity errors cause by class loading
Expand Down Expand Up @@ -2650,7 +2650,7 @@ class Default extends WithInnerClassLoadingLock {
* Creates a default lock with a default size for the amount of global locks.
*/
public Default() {
super(WithInnerClassLoadingLock.DEFAULT_SIZE);
super(DEFAULT_SIZE);
}

/**
Expand Down

0 comments on commit bebdf16

Please sign in to comment.