You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Re-factoring the LanguageCache so that languages can be re-initialized with reflection.
This feature is required for running an AOT compilation server that can process
requests for different sets of languages. On each compilation the server must
remove the unused languages in order to remove them from compilation.
Map<String, Object> languages = (Map<String, Object>) initMethod.invoke(null, Thread.currentThread().getContextClassLoader());
47
+
48
+
assertlanguages.containsKey("application/x-test") : "Re-initialized languages must contain application/x-test language after reflective initialization.";
0 commit comments