Skip to content

Commit 3cc9da5

Browse files
committed
refactor: move class C from package p5 to package p6
1 parent e2a2bcd commit 3cc9da5

File tree

2 files changed

+11
-10
lines changed

2 files changed

+11
-10
lines changed

src/p5/C.java

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1 @@
11
package p5;
2-
3-
public class C {
4-
public void m3() {
5-
System.out.println("m3");
6-
}
7-
8-
public void m4() {
9-
System.out.println("m4");
10-
}
11-
}

src/p6/C.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
package p6;
2+
3+
public class C {
4+
public void m3() {
5+
System.out.println("m3");
6+
}
7+
8+
public void m4() {
9+
System.out.println("m4");
10+
}
11+
}

0 commit comments

Comments
 (0)