add-unix-user-hosting-asset-validation #66

Merged
hsh-michaelhoennig merged 11 commits from add-unix-user-hosting-asset-validation into master 2024-06-27 12:39:45 +02:00
Showing only changes of commit 94d96548d4 - Show all commits

View File

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