-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Description
The parse() not working when the Java class includes special characters as ' or |
For example, the following class not working with java-model because has special characters:
public class SpecialCharacters {
char[] specialCharacters = {'\'','/','$',&','@'};
public void showSymbols() {
for(int i =0; i < specialCharacters.length; i++) {
System.out.println("the symbol is: " + specialCharacters[i]);
}
}
}At the moment, just the class that has "single quote" the java-model parse failed and the error "could not parse file SpecialCharacters.java: Unexpected token ' in JSON at position 34"
If more information is needed, I'd be happy to share it as soon as possible.
Metadata
Metadata
Assignees
Labels
No labels