-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Remove encoding-less parser constructors #29
Comments
Well, alternatively I could fix the NullPointerException ;-) |
Thanks for quick response 👍 InputStreams deliver bytes, not chars. But a parser needs chars. So I think it makes sense to either go with a Reader or an InputStream+encoding. Since the problematic calls are using an InputStream as the source, it would be better to drop the variants without encoding all over. I'd go one step further and make all InputStream constructors only a mapping to some meaningful Reader instance. I guess the old JavaCC code guessed (!?) what the encoding is. Guessing is bad. I had the NPE-behaviour in old code that used JavaCC before and was a bit surprised that I get runtime errors after migrating to ph-javacc-maven-plugin (thanks for that!). My opinion: Compile time errors are much better if you need to touch your code anyway. |
Hi, |
Never mind, we're here to master complexity ;) The plugin used is 4.1.4: <plugin>
<groupId>com.helger.maven</groupId>
<artifactId>ph-javacc-maven-plugin</artifactId>
<version>4.1.4</version>
<executions>
<execution>
<phase>generate-sources</phase>
<id>javacc</id>
<goals>
<goal>javacc</goal>
</goals>
</execution>
</executions>
</plugin> and this uses <dependency>
<groupId>com.helger</groupId>
<artifactId>parser-generator-cc</artifactId>
<version>1.1.3</version>
</dependency> |
Ahhhh :D - thank you ;-) Too many configuration options. 😊 |
Since I always use "modern" mode I never stumbled upon that one.... sigh |
Thanks for bringing this to my attention - it will be fixed in the next release. |
ph-javacc-maven-plugin warns in the docs about the constructors without an encoding.
The parser constructors without a character encoding throw a NullPointerException.
It doesn't make sense to keep these calls since they are breaking the API because the encoding is now mandatory. Before that, it seems to have been assigned by default if no encoding was given.
I'd suggest to remove the parser constructor calls without character encoding.
This is the exception that is thrown when calling the 'buggy constructors':
The text was updated successfully, but these errors were encountered: