The problem is that QDox is not parsing correctly this: private String language/**/= "en"; // defaults
private String country/* */= "US"; // defaults private String variant/* */= " "; // defaults The first line is being parsed correctly it cas an empty comment /**/, but the second line, which has an empty coment with whitespaces /* */ gives a parse error. Yes, I know those empty comments in that place are stupid and useless, but I have a base code that unfortunately is full of them and removing them is not an option. Besides, if Java parses them and compiles, should not QDox also parse and compile them?
