// "Move 'return' closer to computation of the value of 'n'" "true" class T { int f(boolean a, boolean b) { int n = -1; if (a) { if (b) { return 1; } } return n; } }