mirror of
https://gitflic.ru/project/lax1dude/eaglercraft-1_8.git
synced 2025-07-21 13:01:31 -09:00
27 lines
577 B
Java
27 lines
577 B
Java
package org.json;
|
|
|
|
/**
|
|
* Configuration object for the JSON parser. The configuration is immutable.
|
|
*/
|
|
public class JSONParserConfiguration extends ParserConfiguration {
|
|
|
|
/**
|
|
* Configuration with the default values.
|
|
*/
|
|
public JSONParserConfiguration() {
|
|
super();
|
|
}
|
|
|
|
@Override
|
|
protected JSONParserConfiguration clone() {
|
|
return new JSONParserConfiguration();
|
|
}
|
|
|
|
@SuppressWarnings("unchecked")
|
|
@Override
|
|
public JSONParserConfiguration withMaxNestingDepth(final int maxNestingDepth) {
|
|
return super.withMaxNestingDepth(maxNestingDepth);
|
|
}
|
|
|
|
}
|