Skip to content

Commit dafc242

Browse files
devholic22mp911de
authored andcommitted
Update iteration variable name in PersistenceProviderUnitTests for readability.
Closes #3322
1 parent fab2b38 commit dafc242

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spring-data-jpa/src/test/java/org/springframework/data/jpa/provider/PersistenceProviderUnitTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,8 +152,8 @@ private static byte[] generateByteCodeForInterface(final String interfaceName, C
152152
private static String[] toResourcePaths(Class<?>... interfacesToImplement) {
153153

154154
List<String> interfaceResourcePaths = new ArrayList<>(interfacesToImplement.length);
155-
for (Class<?> iface : interfacesToImplement) {
156-
interfaceResourcePaths.add(ClassUtils.convertClassNameToResourcePath(iface.getName()));
155+
for (Class<?> targetInterface : interfacesToImplement) {
156+
interfaceResourcePaths.add(ClassUtils.convertClassNameToResourcePath(targetInterface.getName()));
157157
}
158158

159159
return interfaceResourcePaths.toArray(new String[0]);

0 commit comments

Comments
 (0)