public class Subject { private int myInt; private int t; public void wp() { myInt += t; } void foo() { wp(); wp(); } }