We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04fc77e commit c223124Copy full SHA for c223124
src/de/inetsoftware/jwebassembly/module/ModuleGenerator.java
@@ -224,7 +224,6 @@ private void scanFunctions() throws IOException {
224
225
//temporary Hack because the generated Enum.valueOf(String) use Reflection which currently is not supported
226
if( classFile.isEnum() && "valueOf".equals( next.methodName ) && next.signature.startsWith( "(Ljava/lang/String;)" ) ) {
227
- System.err.println( next.signatureName );
228
String replaceForEnums = ReplacementForEnums.class.getName().replace( ".", "/" );
229
ClassFile file = classFileLoader.get( replaceForEnums );
230
classFileLoader.partial( next.className, file );
0 commit comments