We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efbf0c3 commit fee4a8fCopy full SHA for fee4a8f
commandsv3/src/main/java/org/wpilib/commands3/Binding.java
@@ -21,5 +21,6 @@ record Binding(BindingScope scope, BindingType type, Command command, StackTrace
21
ErrorMessages.requireNonNullParam(scope, "scope", "Binding");
22
ErrorMessages.requireNonNullParam(type, "type", "Binding");
23
ErrorMessages.requireNonNullParam(command, "command", "Binding");
24
+ ErrorMessages.requireNonNullParam(frames, "frames", "Binding");
25
}
26
0 commit comments