Skip to content

Commit

Permalink
SubParameter logic bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
HidekiSugimoto189 committed Dec 11, 2022
1 parent 4e7c139 commit 6ad3f54
Showing 1 changed file with 5 additions and 2 deletions.
Expand Up @@ -415,8 +415,11 @@ private Parameter getBindParameter(final String paramName) {
return null;
}

String propertyName = keys[1];
return parameter.createSubParameter(propertyName);
if (keys.length > 1) {
String propertyName = keys[1];
return parameter.createSubParameter(propertyName);
}
return parameter;
}
}
}
Expand Down

0 comments on commit 6ad3f54

Please sign in to comment.