Skip to content

Commit

Permalink
Fix wrong throws
Browse files Browse the repository at this point in the history
  • Loading branch information
pmouawad committed Dec 20, 2020
1 parent b9cdab0 commit 10acbc7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ protected void computeFromPostBody(HTTPSamplerBase sampler,
* @param postData String
* @return boolean
*/
public static boolean isPotentialJson(final String postData) throws IOException {
public static boolean isPotentialJson(final String postData) {
boolean valid = true;
try{
OBJECT_MAPPER.readTree(postData);
Expand Down

0 comments on commit 10acbc7

Please sign in to comment.