Skip to content

Commit 17c0dfd

Browse files
javier-godoypaodb
authored andcommitted
fix: make classloader cache non-static
1 parent 9d5700b commit 17c0dfd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/flowingcode/vaadin/jsonmigration/ClassInstrumentationUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ final class ClassInstrumentationUtil {
5656

5757
private final int version;
5858

59-
private static final Map<ClassLoader, InstrumentedClassLoader> classLoaderCache = new WeakHashMap<>();
59+
private final Map<ClassLoader, InstrumentedClassLoader> classLoaderCache = new WeakHashMap<>();
6060

6161
ClassInstrumentationUtil(int version) {
6262
this.version = version;

0 commit comments

Comments
 (0)