Skip to content

Commit

Permalink
revert ModelTestCase
Browse files Browse the repository at this point in the history
Signed-off-by: channel-dante <dante@channel.io>
  • Loading branch information
channel-dante committed Dec 18, 2023
1 parent 83f5057 commit 05d6d80
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ public abstract class ModelTestCase extends Assert {
private JsonpMapper setupMapper(int rand) {
// Randomly choose json-b or jackson
if (rand % 2 == 0) {
System.out.println("1");
System.out.println("Using a JsonB mapper (rand = " + rand + ").");
return new JsonbJsonpMapper() {
@Override
Expand All @@ -67,7 +66,6 @@ public boolean ignoreUnknownFields() {
}
};
} else {
System.out.println("2");
System.out.println("Using a Jackson mapper (rand = " + rand + ").");
return new JacksonJsonpMapper() {
@Override
Expand Down

0 comments on commit 05d6d80

Please sign in to comment.