You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415
  1. package apackage;
  2. public class SomeClass {
  3. int x;
  4. public SomeClass() {
  5. init(); // line 6
  6. x = 3;
  7. }
  8. public void init() {
  9. }
  10. }