Skip to content

Commit 1aa1937

Browse files
committed
tests: Remove unnecessary semi colon
1 parent cc0e44f commit 1aa1937

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/test/java/org/apache/ibatis/autoconstructor/ExtensiveSubject.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2009-2023 the original author or authors.
2+
* Copyright 2009-2024 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -53,6 +53,6 @@ public ExtensiveSubject(final byte aByte, final short aShort, final char aChar,
5353
}
5454

5555
public enum TestEnum {
56-
AVALUE, BVALUE, CVALUE;
56+
AVALUE, BVALUE, CVALUE
5757
}
5858
}

src/test/java/org/apache/ibatis/submitted/camelcase/Camel.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ public String getLAST_NAME() {
4343
return LAST_NAME;
4444
}
4545

46-
public void setLAST_NAME(String LAST_NAME) {
47-
LAST_NAME = LAST_NAME;
46+
public void setLAST_NAME(String lastName) {
47+
LAST_NAME = lastName;
4848
}
4949

5050
}

0 commit comments

Comments
 (0)