mirror of
https://github.com/i-net-software/JWebAssembly.git
synced 2025-03-25 07:27:52 +01:00
semicolon is not a valid name character, can occur in array class names
This commit is contained in:
parent
b9a904ab42
commit
3cf999510b
@ -292,7 +292,7 @@ public class TextModuleWriter extends ModuleWriter {
|
|||||||
*/
|
*/
|
||||||
@Nonnull
|
@Nonnull
|
||||||
private String normalizeName( String name ) {
|
private String normalizeName( String name ) {
|
||||||
return name.replace( '[', '/' );
|
return name.replace( '[', '/' ).replace( ";", "" );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user