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
Java file: HSQLDBPerceptronRepository Method name: clear() Problematic line(s) of code:
conn.prepareStatement("drop table node").execute(); conn.prepareStatement("drop table wordhidden").execute(); conn.prepareStatement("drop table hiddenword").execute();
Expected: PreparedStatements should be closed for a better coding convention.
Actual: PreparedStatements are not being closed which is against the coding convention.
The text was updated successfully, but these errors were encountered:
Closing this issue since issue #5 includes this one.
Sorry, something went wrong.
No branches or pull requests
Java file: HSQLDBPerceptronRepository
Method name: clear()
Problematic line(s) of code:
Expected: PreparedStatements should be closed for a better coding convention.
Actual: PreparedStatements are not being closed which is against the coding convention.
The text was updated successfully, but these errors were encountered: