All Downloads are FREE. Search and download functionalities are using the official Maven repository.

issues.issue146.Impl_3 Maven / Gradle / Ivy

package issues.issue146;

public class Impl_3 extends Impl_2 {
	private boolean bodyIgnored = true;

	@Override
	public void init() {
		super.init();
		bodyIgnored = false;
	}

	public void test1() {
		if (bodyIgnored) {
			System.out.println("FAIL: body ignored");
			System.err.println("FAIL!");
		} else {
			System.out.println("OK");
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy