Restore protected members to YamlConfiguration

This commit is contained in:
md_5 2021-12-23 11:33:21 +11:00
parent ca67e0f324
commit 8a74758859
No known key found for this signature in database
GPG key ID: E8E901AC7C617C11

View file

@ -38,6 +38,16 @@ import org.yaml.snakeyaml.reader.UnicodeReader;
* Note that this implementation is not synchronized.
*/
public class YamlConfiguration extends FileConfiguration {
/**
* @deprecated unused, not intended to be API
*/
@Deprecated
protected static final String COMMENT_PREFIX = "# ";
/**
* @deprecated unused, not intended to be API
*/
@Deprecated
protected static final String BLANK_CONFIG = "{}\n";
private final DumperOptions yamlDumperOptions;
private final LoaderOptions yamlLoaderOptions;
private final YamlConstructor constructor;