Skip to content

Commit 2d9ea25

Browse files
committed
Add back removed attributes and mark why the are needed in tests
1 parent 9f89fcb commit 2d9ea25

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ public class RichType {
2424

2525
private RichType richType;
2626

27+
// Required for test
28+
private String richField;
29+
2730
private String richProperty;
2831

2932
private Map richMap = new HashMap<>();

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

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

21+
// Required for test
22+
private T fld;
23+
2124
protected T attribute;
2225

2326
public T getId() {

0 commit comments

Comments
 (0)