1 public class CompTests {2 3 public static void main(String [] args) {4 CompTests ct = new CompTests();5 ct.run(10L);6 }7 8 private void run(long time){9 boolean neg;10 11 neg = time < 0;12 if (neg) time = -time;13 }14 } 15