blob: bcf54b120d6dfa9aa4c89778afd8c2642e1b1c71 [file] [log] [blame]
/*
* See LICENSE file in distribution for copyright and licensing information.
*/
package org.yaml.snakeyaml.generics;
public class Nest {
private int height;
public int getHeight() {
return height;
}
public void setHeight(int height) {
this.height = height;
}
}