Skip to content

Commit 05247f9

Browse files
committed
added .this to selectMap new methods
1 parent b6c64c9 commit 05247f9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/org/mybatis/spring/SqlSessionTemplate.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -161,21 +161,21 @@ public Object selectOne(String statement, Object parameter) {
161161
* {@inheritDoc}
162162
*/
163163
public Map<?, ?> selectMap(String statement, String mapKey) {
164-
return sqlSessionProxy.selectMap(statement, mapKey);
164+
return this.sqlSessionProxy.selectMap(statement, mapKey);
165165
}
166166

167167
/**
168168
* {@inheritDoc}
169169
*/
170170
public Map<?, ?> selectMap(String statement, Object parameter, String mapKey) {
171-
return sqlSessionProxy.selectMap(statement, parameter, mapKey);
171+
return this.sqlSessionProxy.selectMap(statement, parameter, mapKey);
172172
}
173173

174174
/**
175175
* {@inheritDoc}
176176
*/
177177
public Map<?, ?> selectMap(String statement, Object parameter, String mapKey, RowBounds rowBounds) {
178-
return sqlSessionProxy.selectMap(statement, parameter, mapKey, rowBounds);
178+
return this.sqlSessionProxy.selectMap(statement, parameter, mapKey, rowBounds);
179179
}
180180

181181
/**

0 commit comments

Comments
 (0)