Skip to content

Commit eb78300

Browse files
committed
HV-1478 Making method only meant for internal usage private
1 parent 3207cf0 commit eb78300

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cdi/src/main/java/org/hibernate/validator/cdi/ValidationExtension.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ private EnumSet<ExecutableType> commonExecutableTypeChecks(ValidateOnExecution v
406406
return executableTypes;
407407
}
408408

409-
public Method replaceWithOverriddenOrInterfaceMethod(Method method, List<Method> allMethodsOfType) {
409+
private Method replaceWithOverriddenOrInterfaceMethod(Method method, List<Method> allMethodsOfType) {
410410
LinkedList<Method> list = new LinkedList<>( allMethodsOfType );
411411
Iterator<Method> iterator = list.descendingIterator();
412412
while ( iterator.hasNext() ) {

0 commit comments

Comments
 (0)