This commit is contained in:
Michael Hoennig 2024-06-27 09:06:30 +02:00
parent d504347ac2
commit 94d96548d4

View File

@ -54,8 +54,6 @@ public class JsonMatcher extends BaseMatcher<CharSequence> {
return true;
} catch (final JSONException | JsonProcessingException e) {
throw new AssertionError(e);
} catch (final Exception e ) {
throw e;
}
}
@ -63,5 +61,4 @@ public class JsonMatcher extends BaseMatcher<CharSequence> {
public void describeTo(final Description description) {
description.appendText("leniently matches JSON");
}
}