Omaha #5229 - rearrangements for merge fix

Former-commit-id: c8005c68c65ada701113e5b5f5c5ee70371a1cd1
This commit is contained in:
Steve Harris 2016-04-01 12:58:49 -05:00
parent 7e54629216
commit 5024bdf13d

View file

@ -621,16 +621,11 @@ public class RpsListEditorDlg extends CaveSWTDialog {
req.productCode);
StringBuilder sb = new StringBuilder();
if (rp != null) {
if (rp.name != null) {
Collection<RadarProduct> variants = ProductInfo.getInstance()
.select(new ProductInfo.Selector(null, rp.mnemonic, null,
null));
Collection<RadarProduct> variants = ProductInfo.getInstance()
.select(new ProductInfo.Selector(null, rp.mnemonic, null,
null));
if (rp.name != null)
sb.append(rp.name);
/*
* if (rp.mnemonic != null)
* sb.append(" (").append(rp.mnemonic).append(')');
*/
}
if (rp.levels != null && variants.size() > 1) {
sb.append(", levels ").append(rp.levels);