File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/main/java/org/apache/ibatis/transaction/jdbc Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -42,12 +42,12 @@ public class JdbcTransaction implements Transaction {
42
42
protected Connection connection ;
43
43
protected DataSource dataSource ;
44
44
protected TransactionIsolationLevel level ;
45
- protected boolean autoCommmit ;
45
+ protected boolean autoCommit ;
46
46
47
47
public JdbcTransaction (DataSource ds , TransactionIsolationLevel desiredLevel , boolean desiredAutoCommit ) {
48
48
dataSource = ds ;
49
49
level = desiredLevel ;
50
- autoCommmit = desiredAutoCommit ;
50
+ autoCommit = desiredAutoCommit ;
51
51
}
52
52
53
53
public JdbcTransaction (Connection connection ) {
@@ -139,7 +139,7 @@ protected void openConnection() throws SQLException {
139
139
if (level != null ) {
140
140
connection .setTransactionIsolation (level .getLevel ());
141
141
}
142
- setDesiredAutoCommit (autoCommmit );
142
+ setDesiredAutoCommit (autoCommit );
143
143
}
144
144
145
145
@ Override
You can’t perform that action at this time.
0 commit comments