blob: 738f08759b4ada182ad9b59c69a1db6fe1329292 [file] [log] [blame]
package pkg;
public class ParameterNames {
public void test(int index, int id, String name) {
testImpl(index, id, name, true);
}
private void testImpl(int index, int id, String name, boolean print) {
if (print) {
System.out.println("[" + index + "] " + id + ":" + name);
}
}
}