improve lazy creation of accounts related nodes

This commit is contained in:
millmanorama 2016-10-27 22:09:02 +02:00
parent 98c668e5ee
commit 92f5b8a153

View File

@ -147,6 +147,14 @@ final public class Accounts implements AutopsyVisitableItem {
*/
private abstract class ObservingChildren<X> extends Children.Keys<X> {
/**
* Override of default constructor to force lazy creation of nodes, by
* concrete instances of ObservingChildren
*/
ObservingChildren() {
super(true);
}
/**
* Create of keys used by this Children object to represent the child
* nodes.