@@ -51,32 +51,31 @@ private static final class Mapper implements Function<String, ClassLoader> {
51
51
private static final ClassLoader APP_CLASSLOADER =
52
52
ClassLoaders .appClassLoader ();
53
53
54
- private static final Integer PLATFORM_LOADER_INDEX = 1 ;
55
- private static final Integer APP_LOADER_INDEX = 2 ;
54
+ private static final String PLATFORM_LOADER_NAME = "PLATFORM" ;
55
+ private static final String APP_LOADER_NAME = "APP" ;
56
56
57
57
/**
58
- * Map from module to a class loader index . The index is resolved to the
58
+ * Map from module name to class loader name . The name is resolved to the
59
59
* actual class loader in {@code apply}.
60
60
*/
61
- private final Map <String , Integer > map ;
61
+ private final Map <String , String > map ;
62
62
63
63
/**
64
64
* Creates a Mapper to map module names in the given Configuration to
65
65
* built-in classloaders.
66
66
*
67
67
* As a proxy for the actual classloader, we store an easily archiveable
68
- * index value in the internal map. The index is stored as a boxed value
69
- * so that we can cheaply do identity comparisons during bootstrap.
68
+ * loader name in the internal map.
70
69
*/
71
70
Mapper (Configuration cf ) {
72
- var map = new HashMap <String , Integer >();
71
+ var map = new HashMap <String , String >();
73
72
for (ResolvedModule resolvedModule : cf .modules ()) {
74
73
String mn = resolvedModule .name ();
75
74
if (!Modules .bootModules .contains (mn )) {
76
75
if (Modules .platformModules .contains (mn )) {
77
- map .put (mn , PLATFORM_LOADER_INDEX );
76
+ map .put (mn , PLATFORM_LOADER_NAME );
78
77
} else {
79
- map .put (mn , APP_LOADER_INDEX );
78
+ map .put (mn , APP_LOADER_NAME );
80
79
}
81
80
}
82
81
}
@@ -85,12 +84,12 @@ private static final class Mapper implements Function<String, ClassLoader> {
85
84
86
85
@ Override
87
86
public ClassLoader apply (String name ) {
88
- Integer loader = map .get (name );
89
- if (loader == APP_LOADER_INDEX ) {
87
+ String loader = map .get (name );
88
+ if (APP_LOADER_NAME . equals ( loader ) ) {
90
89
return APP_CLASSLOADER ;
91
- } else if (loader == PLATFORM_LOADER_INDEX ) {
90
+ } else if (PLATFORM_LOADER_NAME . equals ( loader ) ) {
92
91
return PLATFORM_CLASSLOADER ;
93
- } else { // BOOT_LOADER_INDEX
92
+ } else {
94
93
return null ;
95
94
}
96
95
}
0 commit comments