aboutsummaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/diff/ShiftUp2_PreImage
blob: 8b9727b0153c20cdc663e803a76d6ffd5a2a491c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package org.eclipse.jgit.test.apply;

public class TestClass {

	private void something(String prefix, String msg) {
		System.out.println(prefix + ": " + msg);
	}

	public class A {

		public void methodA() {
			something("A.a", "foo");
		}

		public void methodB() {
			something("A.b", "bar");
		}

	}

	public class B {

		public void methodA() {
			something("B.a", "foo");
		}

		public void methodB() {
			something("B.b", "bar");
		}

	}
}