We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently in the exitPrimitiveSite(List<String> tokens) method of DeviceGenerator.java, there is this block of code:
exitPrimitiveSite(List<String> tokens)
if (wire == null) System.out.println("There be an error here");
If wire is null, then a null pointer exception will occur on the next executed line anyway.
Instead of printing out this uninformative message, I think we should either print something more useful or remove the print statement entirely.
The text was updated successfully, but these errors were encountered:
It was probably an old debug message.
Sorry, something went wrong.
No branches or pull requests
Currently in the
exitPrimitiveSite(List<String> tokens)
method of DeviceGenerator.java, there is this block of code:If wire is null, then a null pointer exception will occur on the next executed line anyway.
Instead of printing out this uninformative message, I think we should either print something more useful or remove the print statement entirely.
The text was updated successfully, but these errors were encountered: