Skip to content

Commit

Permalink
make members final
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeloffner committed Dec 6, 2024
1 parent 872eac9 commit c3a27aa
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ public class ClazzDynamic extends Clazz {

private transient Class clazz;
// private static Map<String, SoftReference<ClazzDynamic>> classes = new ConcurrentHashMap<>();
private FunctionMember[] methods;
private FunctionMember[] declaredMethods;
private FunctionMember[] constructors;
private FunctionMember[] declaredConstructors;
private final FunctionMember[] methods;
private final FunctionMember[] declaredMethods;
private final FunctionMember[] constructors;
private final FunctionMember[] declaredConstructors;

private String clid;
private static Map<ClassLoader, String> clids = new IdentityHashMap<>();
Expand Down

0 comments on commit c3a27aa

Please sign in to comment.