File tree Expand file tree Collapse file tree 8 files changed +0
-15
lines changed
main/java/org/apache/ibatis
test/java/org/apache/ibatis Expand file tree Collapse file tree 8 files changed +0
-15
lines changed Original file line number Diff line number Diff line change 16
16
package org .apache .ibatis .plugin ;
17
17
18
18
import java .lang .annotation .Documented ;
19
- import java .lang .annotation .ElementType ;
20
19
import java .lang .annotation .Retention ;
21
20
import java .lang .annotation .RetentionPolicy ;
22
21
import java .lang .annotation .Target ;
Original file line number Diff line number Diff line change 17
17
18
18
import java .sql .Connection ;
19
19
import java .sql .SQLException ;
20
- import java .sql .Statement ;
21
20
22
21
/**
23
22
* Wraps a database connection.
Original file line number Diff line number Diff line change 17
17
18
18
import java .sql .Connection ;
19
19
import java .sql .SQLException ;
20
- import java .sql .Statement ;
21
-
22
20
import javax .sql .DataSource ;
23
21
24
22
import org .apache .ibatis .logging .Log ;
Original file line number Diff line number Diff line change 16
16
package org .apache .ibatis .builder ;
17
17
18
18
import org .apache .ibatis .reflection .MetaObject ;
19
- import org .apache .ibatis .reflection .factory .DefaultObjectFactory ;
20
19
import org .apache .ibatis .reflection .wrapper .ObjectWrapper ;
21
20
import org .apache .ibatis .reflection .wrapper .ObjectWrapperFactory ;
22
21
23
- import java .util .List ;
24
- import java .util .Properties ;
25
-
26
22
public class CustomObjectWrapperFactory implements ObjectWrapperFactory {
27
23
28
24
private String option ;
Original file line number Diff line number Diff line change 29
29
import org .apache .ibatis .builder .mapper .CustomMapper ;
30
30
import org .apache .ibatis .builder .typehandler .CustomIntegerTypeHandler ;
31
31
import org .apache .ibatis .builder .xml .XMLConfigBuilder ;
32
- import org .apache .ibatis .datasource .pooled .PooledDataSource ;
33
32
import org .apache .ibatis .datasource .unpooled .UnpooledDataSource ;
34
33
import org .apache .ibatis .domain .blog .Author ;
35
34
import org .apache .ibatis .domain .blog .Blog ;
41
40
import org .apache .ibatis .io .JBoss6VFS ;
42
41
import org .apache .ibatis .io .Resources ;
43
42
import org .apache .ibatis .logging .slf4j .Slf4jImpl ;
44
- import org .apache .ibatis .mapping .DatabaseIdProvider ;
45
43
import org .apache .ibatis .mapping .Environment ;
46
- import org .apache .ibatis .plugin .Interceptor ;
47
44
import org .apache .ibatis .scripting .defaults .RawLanguageDriver ;
48
45
import org .apache .ibatis .scripting .xmltags .XMLLanguageDriver ;
49
46
import org .apache .ibatis .session .AutoMappingBehavior ;
Original file line number Diff line number Diff line change 25
25
import org .apache .ibatis .mapping .StatementType ;
26
26
import org .apache .ibatis .session .Configuration ;
27
27
import org .apache .ibatis .type .TypeHandler ;
28
- import org .hamcrest .CoreMatchers ;
29
28
import org .junit .Rule ;
30
29
import org .junit .Test ;
31
30
import org .junit .rules .ExpectedException ;
Original file line number Diff line number Diff line change 23
23
import java .util .List ;
24
24
25
25
import org .apache .ibatis .exceptions .PersistenceException ;
26
- import org .apache .ibatis .executor .ExecutorException ;
27
26
import org .apache .ibatis .io .Resources ;
28
27
import org .apache .ibatis .jdbc .ScriptRunner ;
29
28
import org .apache .ibatis .session .SqlSession ;
30
29
import org .apache .ibatis .session .SqlSessionFactory ;
31
30
import org .apache .ibatis .session .SqlSessionFactoryBuilder ;
32
- import org .hamcrest .CoreMatchers ;
33
31
import org .junit .BeforeClass ;
34
32
import org .junit .Rule ;
35
33
import org .junit .Test ;
Original file line number Diff line number Diff line change 17
17
18
18
import static org .junit .Assert .assertEquals ;
19
19
import static org .junit .Assert .assertFalse ;
20
- import static org .junit .Assert .assertNull ;
21
20
import static org .junit .Assert .assertSame ;
22
21
import static org .junit .Assert .assertTrue ;
23
22
You can’t perform that action at this time.
0 commit comments