Skip to content

Commit

Permalink
Merge pull request #129 from NordicSemiconductor/bugfix/proguard
Browse files Browse the repository at this point in the history
Bug fix: Keep Constructor for GroupReturnCode class when using Proguard
  • Loading branch information
philips77 authored Nov 21, 2023
2 parents 3d6d9e7 + 93029f1 commit 348a1bc
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package io.runtime.mcumgr.response;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;

import org.jetbrains.annotations.NotNull;
Expand All @@ -18,6 +19,9 @@ class GroupReturnCode {
@JsonProperty("rc")
public int rc;

@JsonCreator
public GroupReturnCode() {}

@Override
@NotNull
public String toString() {
Expand Down

0 comments on commit 348a1bc

Please sign in to comment.