Skip to content

Commit 9de41d5

Browse files
author
Piotr Joñski
committed
#84. Compilation error fixes
1 parent 53e3b7d commit 9de41d5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/pl/pojo/tester/api/assertion/AbstractAssetion.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ public void areWellImplemented() {
5858
}
5959

6060
public AbstractAssetion create(final Class<?> clazz, final Object[] constructorParameters, final Class<?>[] constructorParameterTypes) {
61-
final ConstructorParameters constructorParameters = new ConstructorParameters(constructorParameters, constructorParameterTypes);
62-
return create(clazz, constructorParameters);
61+
final ConstructorParameters constructorParameter = new ConstructorParameters(constructorParameters, constructorParameterTypes);
62+
return create(clazz, constructorParameter);
6363
}
6464

6565
public AbstractAssetion create(final Class<?> clazz, final ConstructorParameters constructorParameters) {

0 commit comments

Comments
 (0)