Skip to content

Commit 9e4abf4

Browse files
committed
tests: Remove <T> as not required
1 parent 3d64b1b commit 9e4abf4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/test/java/org/apache/ibatis/builder/ExampleObjectFactory.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2009-2023 the original author or authors.
2+
* Copyright 2009-2024 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -26,12 +26,12 @@ public class ExampleObjectFactory extends DefaultObjectFactory {
2626

2727
@Override
2828
public <T> T create(Class<T> type) {
29-
return super.<T>create(type);
29+
return super.create(type);
3030
}
3131

3232
@Override
3333
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);
3535
}
3636

3737
@Override

0 commit comments

Comments
 (0)