Update iteration variable name in PersistenceProviderUnitTests for readability.
Closes #3322
This commit is contained in:
@@ -152,8 +152,8 @@ class PersistenceProviderUnitTests {
|
||||
private static String[] toResourcePaths(Class<?>... interfacesToImplement) {
|
||||
|
||||
List<String> interfaceResourcePaths = new ArrayList<>(interfacesToImplement.length);
|
||||
for (Class<?> iface : interfacesToImplement) {
|
||||
interfaceResourcePaths.add(ClassUtils.convertClassNameToResourcePath(iface.getName()));
|
||||
for (Class<?> targetInterface : interfacesToImplement) {
|
||||
interfaceResourcePaths.add(ClassUtils.convertClassNameToResourcePath(targetInterface.getName()));
|
||||
}
|
||||
|
||||
return interfaceResourcePaths.toArray(new String[0]);
|
||||
|
||||
Reference in New Issue
Block a user