mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-01 05:47:45 +01:00
Restore protected members to YamlConfiguration
By: md_5 <git@md-5.net>
This commit is contained in:
parent
7ccab27756
commit
46d8d2cd11
@ -38,6 +38,16 @@ import org.yaml.snakeyaml.reader.UnicodeReader;
|
|||||||
* Note that this implementation is not synchronized.
|
* Note that this implementation is not synchronized.
|
||||||
*/
|
*/
|
||||||
public class YamlConfiguration extends FileConfiguration {
|
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 DumperOptions yamlDumperOptions;
|
||||||
private final LoaderOptions yamlLoaderOptions;
|
private final LoaderOptions yamlLoaderOptions;
|
||||||
private final YamlConstructor constructor;
|
private final YamlConstructor constructor;
|
||||||
|
Loading…
Reference in New Issue
Block a user