mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-24 22:26:45 +01:00
29 lines
756 B
Java
29 lines
756 B
Java
|
package com.intellectualcrafters.configuration;
|
||
|
|
||
|
/**
|
||
|
* Various settings for controlling the input and output of a {@link
|
||
|
* MemoryConfiguration}
|
||
|
*/
|
||
|
public class MemoryConfigurationOptions extends ConfigurationOptions {
|
||
|
protected MemoryConfigurationOptions(MemoryConfiguration configuration) {
|
||
|
super(configuration);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public MemoryConfiguration configuration() {
|
||
|
return (MemoryConfiguration) super.configuration();
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public MemoryConfigurationOptions copyDefaults(boolean value) {
|
||
|
super.copyDefaults(value);
|
||
|
return this;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public MemoryConfigurationOptions pathSeparator(char value) {
|
||
|
super.pathSeparator(value);
|
||
|
return this;
|
||
|
}
|
||
|
}
|