mirror of
https://github.com/ysoftdevs/DependencyCheck.git
synced 2026-01-19 10:07:12 +01:00
corrected & operator to use &&
Former-commit-id: cb1dd513f85db07ec54b1fa94328f2ec057eff94
This commit is contained in:
@@ -138,7 +138,7 @@ public class NexusSearch {
|
||||
if (link != null && !"".equals(link)) {
|
||||
ma.setArtifactUrl(link);
|
||||
}
|
||||
if (pomLink != null & !"".equals(pomLink)) {
|
||||
if (pomLink != null && !"".equals(pomLink)) {
|
||||
ma.setPomUrl(pomLink);
|
||||
}
|
||||
return ma;
|
||||
|
||||
Reference in New Issue
Block a user