Restore protected members to YamlConfiguration

By: md_5 <git@md-5.net>
This commit is contained in:
Bukkit/Spigot 2021-12-23 11:33:21 +11:00
parent 7ccab27756
commit 46d8d2cd11

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;