FabLabsMC / fiber

A configuration system. Maintained by @zeroeightysix and @Pyrofab
Apache License 2.0
32 stars 8 forks source link

Annotations: make transient synonymous for ignored settings #12

Closed zeroeightysix closed 5 years ago

zeroeightysix commented 5 years ago
@Setting(ignored = true)
private final int a = 5;

should be the same as

private transient final int a = 5;