add missing "final" to SimpleConfig, was an oversight

This commit is contained in:
Havoc Pennington 2011-11-29 12:11:39 -05:00
parent 444219bb17
commit b50ed75f92

View File

@ -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;