mirror of
https://github.com/lightbend/config.git
synced 2025-02-15 13:50:24 +08:00
add missing "final" to SimpleConfig, was an oversight
This commit is contained in:
parent
444219bb17
commit
b50ed75f92
@ -27,9 +27,9 @@ import com.typesafe.config.ConfigValueType;
|
||||
* key-value pairs would be all the tree's leaf values, in a big flat list with
|
||||
* their full paths.
|
||||
*/
|
||||
class SimpleConfig implements Config {
|
||||
final class SimpleConfig implements Config {
|
||||
|
||||
AbstractConfigObject object;
|
||||
final private AbstractConfigObject object;
|
||||
|
||||
SimpleConfig(AbstractConfigObject object) {
|
||||
this.object = object;
|
||||
|
Loading…
Reference in New Issue
Block a user