mirror of
https://github.com/ysoftdevs/DependencyCheck.git
synced 2026-03-17 23:04:07 +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)) {
|
if (link != null && !"".equals(link)) {
|
||||||
ma.setArtifactUrl(link);
|
ma.setArtifactUrl(link);
|
||||||
}
|
}
|
||||||
if (pomLink != null & !"".equals(pomLink)) {
|
if (pomLink != null && !"".equals(pomLink)) {
|
||||||
ma.setPomUrl(pomLink);
|
ma.setPomUrl(pomLink);
|
||||||
}
|
}
|
||||||
return ma;
|
return ma;
|
||||||
|
|||||||
Reference in New Issue
Block a user