Skip to content

Commit 0a1c09c

Browse files
committed
Adjusted formatting of Java source.
1 parent e508c36 commit 0a1c09c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/sample/java/project/SampleJavaProject.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
public class SampleJavaProject {
44
public static void main(String[] args) {
5-
System.out.println("Hello world!");
5+
System.out.println("Hello world!");
66
}
77

88
public int add(int a, int b) {
9-
return a + b;
9+
return a + b;
1010
}
1111
}

test/sample/java/project/SampleJavaProjectTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@
44

55
public class SampleJavaProjectTest extends TestCase {
66
public SampleJavaProjectTest(String name) {
7-
super(name);
7+
super(name);
88
}
99

1010
SampleJavaProject sjp;
1111

1212
public void setUp() {
13-
sjp = new SampleJavaProject();
13+
sjp = new SampleJavaProject();
1414
}
1515

1616
public void testAdd() {
17-
assert(sjp.add(3, 4) == 7);
17+
assert(sjp.add(3, 4) == 7);
1818
}
1919
}

0 commit comments

Comments
 (0)