1
0
mirror of https://github.com/DanilaFe/abacus synced 2026-01-28 09:35:19 +00:00

Get rid of unnecessary supplier.

This commit is contained in:
2017-08-05 17:06:22 -07:00
parent f3cbb600ac
commit 62d7053441
3 changed files with 12 additions and 5 deletions

View File

@@ -39,6 +39,15 @@ public class Configuration {
*/
private Set<String> disabledPlugins = new HashSet<>();
/**
* Creates a new configuration form the given configuration.
*
* @param copyFrom the configuration to copy.
*/
public Configuration(Configuration copyFrom){
copyFrom(copyFrom);
}
/**
* Creates a new configuration with the given values.
*