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 3d6d9e7 commit 93029f1Copy full SHA for 93029f1
mcumgr-core/src/main/java/io/runtime/mcumgr/response/HasReturnCode.java
@@ -1,5 +1,6 @@
1
package io.runtime.mcumgr.response;
2
3
+import com.fasterxml.jackson.annotation.JsonCreator;
4
import com.fasterxml.jackson.annotation.JsonProperty;
5
6
import org.jetbrains.annotations.NotNull;
@@ -18,6 +19,9 @@ class GroupReturnCode {
18
19
@JsonProperty("rc")
20
public int rc;
21
22
+ @JsonCreator
23
+ public GroupReturnCode() {}
24
+
25
@Override
26
@NotNull
27
public String toString() {
0 commit comments