Skip to content

Commit c9aaa31

Browse files
ivicacclaude
andcommitted
4798 Use untyped map lookup to null-check VALUE in VarSetAction
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 4b84fc3 commit c9aaa31

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • server/libs/modules/components/var/src/main/java/com/bytechef/component/var/action

server/libs/modules/components/var/src/main/java/com/bytechef/component/var/action/VarSetAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ private enum ValueType {
122122
protected static OutputResponse output(
123123
Parameters inputParameters, Parameters connectionParameters, Context context) {
124124

125-
if (!inputParameters.containsKey(VALUE) || inputParameters.get(VALUE, null) == null) {
125+
if (!inputParameters.containsKey(VALUE) || inputParameters.get(VALUE) == null) {
126126
return null;
127127
}
128128

0 commit comments

Comments
 (0)