Skip to content

Commit 1228c7e

Browse files
committed
Fix syntax errors in test samples
1 parent 4f969c0 commit 1228c7e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

spring-javaformat/spring-javaformat-checkstyle/src/test/resources/source/JavadocValid.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public void test2(String something) {
4343
* @return the thing
4444
* @throws RuntimeException on the error
4545
*/
46-
public String test3(String something) throw RuntimeException {
46+
public String test3(String something) throws RuntimeException {
4747
}
4848

4949
}
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
/**
22
* Something.
33
*/
4-
package com.example
4+
package com.example;

spring-javaformat/spring-javaformat-checkstyle/src/test/resources/source/package-info-header-must-be-missing.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414
* limitations under the License.
1515
*/
1616

17-
package com.example
17+
package com.example;

0 commit comments

Comments
 (0)