Skip to content

Commit 18114ea

Browse files
author
Troy Melhase
committed
Renaming test classes.
1 parent 0923551 commit 18114ea

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class Comments4 {
1+
class Comments0 {
22

33
static void bar(int x) {
44
System.out.println(x);

test/Ctor4.java renamed to test/Ctor0.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,36 @@
1-
class Ctor4 {
1+
class Ctor0 {
22

33
public int m_foo;
44
public int m_bar;
55

66

77

8-
public Ctor4() {
8+
public Ctor0() {
99
this(/* foo */ 0, /* bar */ 0);
1010
}
1111

12-
public Ctor4(int p_foo) {
12+
public Ctor0(int p_foo) {
1313
this(p_foo, 0);
1414

1515
}
1616

17-
public Ctor4(int p_foo, int p_bar) {
17+
public Ctor0(int p_foo, int p_bar) {
1818
m_foo = p_foo;
1919
m_bar = p_bar;
2020
}
2121

2222

2323
public static void main(String[] args) {
24-
Ctor4 a = new Ctor4();
24+
Ctor0 a = new Ctor0();
2525
System.out.println(a.m_foo);
2626
System.out.println(a.m_bar);
2727

28-
Ctor4 b = new Ctor4(1);
28+
Ctor0 b = new Ctor0(1);
2929
System.out.println(b.m_foo);
3030
System.out.println(b.m_bar);
3131

3232

33-
Ctor4 c = new Ctor4(2, 3);
33+
Ctor0 c = new Ctor0(2, 3);
3434
System.out.println(c.m_foo);
3535
System.out.println(c.m_bar);
3636

0 commit comments

Comments
 (0)