File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/test/java/org/apache/ibatis/builder Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2009-2023 the original author or authors.
2
+ * Copyright 2009-2024 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.
@@ -26,12 +26,12 @@ public class ExampleObjectFactory extends DefaultObjectFactory {
26
26
27
27
@ Override
28
28
public <T > T create (Class <T > type ) {
29
- return super .< T > create (type );
29
+ return super .create (type );
30
30
}
31
31
32
32
@ Override
33
33
public <T > T create (Class <T > type , List <Class <?>> constructorArgTypes , List <Object > constructorArgs ) {
34
- return super .< T > create (type , constructorArgTypes , constructorArgs );
34
+ return super .create (type , constructorArgTypes , constructorArgs );
35
35
}
36
36
37
37
@ Override
You can’t perform that action at this time.
0 commit comments