We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9cda2ec commit a233c91Copy full SHA for a233c91
src/main/java/org/apache/ibatis/session/Configuration.java
@@ -698,7 +698,7 @@ public Executor newExecutor(Transaction transaction) {
698
699
public Executor newExecutor(Transaction transaction, ExecutorType executorType) {
700
executorType = executorType == null ? defaultExecutorType : executorType;
701
- executorType = executorType == null ? ExecutorType.SIMPLE : executorType;
+// executorType = executorType == null ? ExecutorType.SIMPLE : executorType;
702
Executor executor;
703
if (ExecutorType.BATCH == executorType) {
704
executor = new BatchExecutor(this, transaction);
0 commit comments