mirror of
https://github.com/ysoftdevs/DependencyCheck.git
synced 2026-01-14 15:53:36 +01:00
minor correction
Former-commit-id: a22f05e1f2446fa60d0b27c7019c0977bd9f103f
This commit is contained in:
@@ -217,16 +217,9 @@ public class DependencyBundlingAnalyzer extends AbstractAnalyzer implements Anal
|
||||
if (left.equalsIgnoreCase(right)) {
|
||||
return true;
|
||||
}
|
||||
if (dependency1.getFileName().contains("RELEASE") && dependency2.getFileName().contains("RELEASE")) {
|
||||
System.out.println(dependency1.getFilePath());
|
||||
System.out.println(dependency2.getFilePath());
|
||||
System.out.println("Path=" + left.equalsIgnoreCase(right));
|
||||
System.out.println();
|
||||
}
|
||||
if (left.matches(".*[/\\\\]repository[/\\\\].*") && right.matches(".*[/\\\\]repository[/\\\\].*")) {
|
||||
left = getBaseRepoPath(left);
|
||||
right = getBaseRepoPath(right);
|
||||
System.out.println("found a repo");
|
||||
}
|
||||
return left.equalsIgnoreCase(right);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user