Skip to content

Commit 5a6556f

Browse files
gsmetgunnarmorling
authored andcommitted
HV-1478 Move ValidationExtension to the exported package
1 parent 096c6ee commit 5a6556f

File tree

7 files changed

+433
-416
lines changed

7 files changed

+433
-416
lines changed

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

Lines changed: 424 additions & 0 deletions
Large diffs are not rendered by default.

cdi/src/main/java/org/hibernate/validator/cdi/internal/InheritedMethodsHelper.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* @author Gunnar Morling
2626
*
2727
*/
28-
class InheritedMethodsHelper {
28+
public class InheritedMethodsHelper {
2929

3030
private InheritedMethodsHelper() {
3131
// Not allowed
@@ -41,7 +41,7 @@ private InheritedMethodsHelper() {
4141
*
4242
* @return set of all methods of the given class
4343
*/
44-
static List<Method> getAllMethods(Class<?> clazz) {
44+
public static List<Method> getAllMethods(Class<?> clazz) {
4545
Contracts.assertNotNull( clazz );
4646

4747
List<Method> methods = newArrayList();

0 commit comments

Comments
 (0)