Skip to content

Commit

Permalink
[java] fixed JsonOutput.MAX_DEPTH
Browse files Browse the repository at this point in the history
  • Loading branch information
joerg1985 committed Aug 23, 2023
1 parent 9dcd124 commit b03bcc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion java/src/org/openqa/selenium/json/JsonOutput.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
/** */
public class JsonOutput implements Closeable {
private static final Logger LOG = Logger.getLogger(JsonOutput.class.getName());
static final int MAX_DEPTH = 10;
static final int MAX_DEPTH = 100;

private static final Predicate<Class<?>> GSON_ELEMENT;

Expand Down

0 comments on commit b03bcc6

Please sign in to comment.