Skip to content

Commit d17b3fb

Browse files
committed
Deprecate public methods (just for formality)
1 parent 90cf124 commit d17b3fb

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/main/java/org/apache/ibatis/mapping/ResultMapping.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -262,10 +262,20 @@ public String getForeignColumn() {
262262
return foreignColumn;
263263
}
264264

265+
@Deprecated
266+
public void setForeignColumn(String foreignColumn) {
267+
this.foreignColumn = foreignColumn;
268+
}
269+
265270
public boolean isLazy() {
266271
return lazy;
267272
}
268273

274+
@Deprecated
275+
public void setLazy(boolean lazy) {
276+
this.lazy = lazy;
277+
}
278+
269279
public boolean isSimple() {
270280
return this.nestedResultMapId == null && this.nestedQueryId == null && this.resultSet == null;
271281
}

0 commit comments

Comments
 (0)