blob: b80a00938573b4db8387b8833a0e758574ec70f2 [file] [log] [blame]
/*
* See LICENSE file in distribution for copyright and licensing information.
*/
package org.yaml.snakeyaml.representer;
public class WrongJavaBean {
String packageField;
static String staticField;
public transient String dynamo;
public String publicField;
private int privateValue;
public WrongJavaBean() {
method();
}
private void method() {
privateValue++;
}
}