Skip to content
New issue

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

Delete needless if statement. #1235

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 1 addition & 5 deletions qulice-pmd/src/main/java/com/qulice/pmd/PmdListener.java
Expand Up @@ -84,13 +84,9 @@ public void ruleViolationAdded(final RuleViolation violation) {
/**
* Registers a new ProcessingError.
* @param error A processing error that needs to be reported.
* @todo #1129 If was added to avoid failing build, but there should be
* better place for this check.
*/
public void onProcessingError(final ProcessingError error) {
if (error.getFile().endsWith(".java")) {
this.errors.add(new PmdError.OfProcessingError(error));
}
this.errors.add(new PmdError.OfProcessingError(error));
}

/**
Expand Down