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.

ShiftUp_PreImage 447B

1234567891011121314151617181920212223242526272829303132
  1. package org.eclipse.jgit.test.apply;
  2. public class TestClass {
  3. private void something(String prefix, String msg) {
  4. System.out.println(prefix + ": " + msg);
  5. }
  6. public class A {
  7. public void methodA() {
  8. something("A.a", "foo");
  9. }
  10. public void methodB() {
  11. something("A.b", "bar");
  12. }
  13. }
  14. public class B {
  15. public void methodA() {
  16. something("B.a", "foo");
  17. }
  18. public void methodB() {
  19. something("B.b", "bar");
  20. }
  21. }
  22. }