Skip to content

Commit 1feedf1

Browse files
authored
Merge pull request #3354 from hazendaz/next
Add comments to unused fields in tests (indirectly required) and remove unused field
2 parents 1d936a4 + 2d9ea25 commit 1feedf1

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

src/test/java/org/apache/ibatis/builder/CustomObjectWrapperFactory.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@
2121

2222
public class CustomObjectWrapperFactory implements ObjectWrapperFactory {
2323

24-
private String option;
25-
2624
@Override
2725
public boolean hasWrapperFor(Object object) {
2826
return false;

src/test/java/org/apache/ibatis/domain/misc/RichType.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ public class RichType {
2424

2525
private RichType richType;
2626

27+
// Required for test
2728
private String richField;
2829

2930
private String richProperty;

src/test/java/org/apache/ibatis/reflection/typeparam/Calculator.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
public class Calculator<T> {
1919
protected T id;
2020

21+
// Required for test
2122
private T fld;
2223

2324
protected T attribute;

0 commit comments

Comments
 (0)