Skip to content

Commit 2400bd3

Browse files
committed
[ci] Tabs to spaces in source code
1 parent 77ef11b commit 2400bd3

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/main/java/org/apache/ibatis/binding/MapperMethod.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public Object execute(SqlSession sqlSession, Object[] args) {
5555
Object result;
5656
switch (command.getType()) {
5757
case INSERT: {
58-
Object param = method.convertArgsToSqlCommandParam(args);
58+
Object param = method.convertArgsToSqlCommandParam(args);
5959
result = rowCountResult(sqlSession.insert(command.getName(), param));
6060
break;
6161
}

src/main/java/org/apache/ibatis/reflection/MetaObject.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public ObjectWrapperFactory getObjectWrapperFactory() {
7474
}
7575

7676
public ReflectorFactory getReflectorFactory() {
77-
return reflectorFactory;
77+
return reflectorFactory;
7878
}
7979

8080
public Object getOriginalObject() {

src/main/java/org/apache/ibatis/session/Configuration.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -491,11 +491,11 @@ public MapperRegistry getMapperRegistry() {
491491
}
492492

493493
public ReflectorFactory getReflectorFactory() {
494-
return reflectorFactory;
494+
return reflectorFactory;
495495
}
496496

497497
public void setReflectorFactory(ReflectorFactory reflectorFactory) {
498-
this.reflectorFactory = reflectorFactory;
498+
this.reflectorFactory = reflectorFactory;
499499
}
500500

501501
public ObjectFactory getObjectFactory() {

0 commit comments

Comments
 (0)