Skip to content
Snippets Groups Projects
Commit 15e0d38d authored by srosse's avatar srosse
Browse files

OO-83: check if a key is selected before getting it

parent f2d3390d
No related branches found
No related tags found
No related merge requests found
...@@ -345,8 +345,14 @@ public class EPStructureDetailsController extends FormBasicController { ...@@ -345,8 +345,14 @@ public class EPStructureDetailsController extends FormBasicController {
final TextElement amountElement = amountElements.get(i); final TextElement amountElement = amountElements.get(i);
final CollectRestriction cr = (CollectRestriction) restrictionElement.getUserObject(); final CollectRestriction cr = (CollectRestriction) restrictionElement.getUserObject();
final String restriction = restrictionElement.getSelectedKey(); String restriction = "";
final String artefactType = restrictToArtefactElement.getSelectedKey(); if(restrictionElement.isOneSelected()) {
restriction = restrictionElement.getSelectedKey();
}
String artefactType = "";
if(restrictToArtefactElement.isOneSelected()) {
artefactType = restrictToArtefactElement.getSelectedKey();
}
final String amount = amountElement.getValue(); final String amount = amountElement.getValue();
cr.setRestriction(restriction); cr.setRestriction(restriction);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment