corrected & operator to use &&

Former-commit-id: cb1dd513f85db07ec54b1fa94328f2ec057eff94
This commit is contained in:
Jeremy Long
2015-03-05 06:16:31 -05:00
parent 70859eb719
commit 4d4672fc4d

View File

@@ -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;