mirror of
https://github.com/ysoftdevs/DependencyCheck.git
synced 2026-03-23 17:41:28 +01:00
checkstyle corrections
Former-commit-id: 4235986f29cd91b212024844edf4360d1204deba
This commit is contained in:
@@ -325,7 +325,7 @@ public class Engine {
|
|||||||
Dependency dependency = null;
|
Dependency dependency = null;
|
||||||
if (supportsExtension(extension)) {
|
if (supportsExtension(extension)) {
|
||||||
dependency = new Dependency(file);
|
dependency = new Dependency(file);
|
||||||
if (extension == fileName){
|
if (extension == null ? fileName == null : extension.equals(fileName)) {
|
||||||
dependency.setFileExtension(extension);
|
dependency.setFileExtension(extension);
|
||||||
}
|
}
|
||||||
dependencies.add(dependency);
|
dependencies.add(dependency);
|
||||||
|
|||||||
Reference in New Issue
Block a user