Skip to content

Commit

Permalink
fix(fjage): fixing breaking test with param change ntf changes
Browse files Browse the repository at this point in the history
  • Loading branch information
notthetup committed Jan 22, 2024
1 parent 02b8682 commit 904176b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ protected ParameterRsp processParameterReq(ParameterReq msg, ParameterRsp rsp) {
} catch (NoSuchMethodException ex) {
current = getParam(e.param, ndx);
if (current == null) {
if (ndx >= 0) throw ex;
if (ndx >= 0 && evalue == null) throw ex;
Field f = cls.getField(fldName);
current = f.get(agent);
}
Expand Down

0 comments on commit 904176b

Please sign in to comment.