Skip to content

Commit

Permalink
Fix multi-line comment (use block-comment)
Browse files Browse the repository at this point in the history
  • Loading branch information
jerboaa committed Jan 15, 2024
1 parent 8b11740 commit 575382c
Showing 1 changed file with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,12 @@ public class JavaxXmlClassAndResourcesLoaderFeature extends JNIRegistrationUtil

@Override
public void beforeAnalysis(BeforeAnalysisAccess access) {
// Ensure that class loading of xml related classes work
// com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl
// implicitly depends on jdk.xml.internal.JdkXmlUtils. So initialization
// order needs to happen in the reverse order.
/*
* Ensure that class loading of xml related classes work
* com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl
* implicitly depends on jdk.xml.internal.JdkXmlUtils. So initialization
* order needs to happen in the reverse order.
*/
Class<?> jdkUtil = access.findClassByName("jdk.xml.internal.JdkXmlUtils");
if (jdkUtil != null) {
ReflectionUtil.newInstance(jdkUtil);
Expand Down

0 comments on commit 575382c

Please sign in to comment.