fix yaml source constructor
this should not be public, you ought to use the `of` methods
This commit is contained in:
parent
d2f06c9876
commit
f33b33bb20
|
|
@ -12,7 +12,7 @@ public class YamlSource<T> {
|
||||||
|
|
||||||
public final T source;
|
public final T source;
|
||||||
|
|
||||||
public YamlSource(T source) {
|
private YamlSource(T source) {
|
||||||
this.source = source;
|
this.source = source;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue