File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed
main/java/org/apache/ibatis
test/java/org/apache/ibatis/submitted/ognlstatic Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 19
19
20
20
/**
21
21
* Cursor contract to handle fetching items lazily using an Iterator.
22
- * Cursors are a perfect fit to handle millions of items queries that would not normally fits in memory.
22
+ * Cursors are a perfect fit to handle millions of items queries that would not normally fit in memory.
23
23
* If you use collections in resultMaps then cursor SQL queries must be ordered (resultOrdered="true")
24
24
* using the id columns of the resultMap.
25
25
*
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ public BatchUpdateException getBatchUpdateException() {
60
60
* in the list for each successful sub-executor executed before the failing
61
61
* executor.
62
62
*
63
- * @return the previously successful executor results (may be an empty list
63
+ * @return the previously successful executor results (maybe an empty list
64
64
* if no executor has executed successfully)
65
65
*/
66
66
public List <BatchResult > getSuccessfulBatchResults () {
Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ protected static <T> T checkNotNull(T object) {
125
125
}
126
126
127
127
/**
128
- * Verifies that the return type of a method is what it is expected to be. If it is not, then
128
+ * Verifies that the return type of method is what it is expected to be. If it is not, then
129
129
* this VFS is marked as invalid for the current environment.
130
130
*
131
131
* @param method The method whose return type is to be checked.
Original file line number Diff line number Diff line change 25
25
26
26
/**
27
27
* An actual SQL String got from an {@link SqlSource} after having processed any dynamic content.
28
- * The SQL may have SQL placeholders "?" and an list (ordered) of an parameter mappings
28
+ * The SQL may have SQL placeholders "?" and a list (ordered) of a parameter mappings
29
29
* with the additional information for each parameter (at least the property name of the input object to read
30
30
* the value from).
31
31
* <p>
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ static void setUp() throws Exception {
52
52
* <p>
53
53
* DEBUG [main] - ==> Parameters: 1(Integer), 1(Integer)
54
54
* <p>
55
- * There are two parameter mappings but DefaulParameterHandler maps them both to input paremeter (integer)
55
+ * There are two parameter mappings but DefaultParameterHandler maps them both to input parameter (integer)
56
56
*/
57
57
@ Test // see issue #448
58
58
void shouldGetAUserStatic () {
You can’t perform that action at this time.
0 commit comments