blob: 1975b55f113de124d32b31d2791b10fa0d3d6f27 [file] [log] [blame]
/*
* See LICENSE file in distribution for copyright and licensing information.
*/
package org.yaml.snakeyaml.recursive.generics;
import java.util.LinkedList;
import java.util.List;
public class HumanGen3 extends AbstractHumanGen<List<HumanGen3>, HumanGen3>{
public HumanGen3() {
children = new LinkedList<HumanGen3>();
}
}