File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
src/main/java/org/apache/ibatis/builder Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
/**
2
- * Copyright 2009-2018 the original author or authors.
2
+ * Copyright 2009-2019 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
Original file line number Diff line number Diff line change @@ -212,9 +212,9 @@ private void objectWrapperFactoryElement(XNode context) throws Exception {
212
212
213
213
private void reflectorFactoryElement (XNode context ) throws Exception {
214
214
if (context != null ) {
215
- String type = context .getStringAttribute ("type" );
216
- ReflectorFactory factory = (ReflectorFactory ) resolveClass (type ).newInstance ();
217
- configuration .setReflectorFactory (factory );
215
+ String type = context .getStringAttribute ("type" );
216
+ ReflectorFactory factory = (ReflectorFactory ) resolveClass (type ).newInstance ();
217
+ configuration .setReflectorFactory (factory );
218
218
}
219
219
}
220
220
@@ -294,7 +294,7 @@ private void databaseIdProviderElement(XNode context) throws Exception {
294
294
String type = context .getStringAttribute ("type" );
295
295
// awful patch to keep backward compatibility
296
296
if ("VENDOR" .equals (type )) {
297
- type = "DB_VENDOR" ;
297
+ type = "DB_VENDOR" ;
298
298
}
299
299
Properties properties = context .getChildrenAsProperties ();
300
300
databaseIdProvider = (DatabaseIdProvider ) resolveClass (type ).newInstance ();
You can’t perform that action at this time.
0 commit comments