-
Notifications
You must be signed in to change notification settings - Fork 573
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
HV-912 Reducing accessibility of some classes and methods
- Loading branch information
1 parent
cc782d6
commit ea88f45
Showing
9 changed files
with
20 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,13 +29,13 @@ | |
* @author Kevin Pollet <[email protected]> (C) 2011 SERLI | ||
* @author Gunnar Morling | ||
*/ | ||
public class MethodConstraintMappingContextImpl implements MethodConstraintMappingContext { | ||
class MethodConstraintMappingContextImpl implements MethodConstraintMappingContext { | ||
|
||
private final Class<?> beanClass; | ||
private final Method method; | ||
private final ConstraintMappingContext mapping; | ||
|
||
public MethodConstraintMappingContextImpl(Class<?> beanClass, Method method, ConstraintMappingContext mapping) { | ||
MethodConstraintMappingContextImpl(Class<?> beanClass, Method method, ConstraintMappingContext mapping) { | ||
|
||
this.beanClass = beanClass; | ||
this.method = method; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ | |
* @author Gunnar Morling | ||
* @author Kevin Pollet <[email protected]> (C) 2011 SERLI | ||
*/ | ||
public final class ParameterConstraintMappingContextImpl | ||
final class ParameterConstraintMappingContextImpl | ||
extends ConstraintMappingContextImplBase | ||
implements ParameterConstraintMappingContext { | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,13 +30,13 @@ | |
* @author Gunnar Morling | ||
* @author Kevin Pollet <[email protected]> (C) 2011 SERLI | ||
*/ | ||
public final class ReturnValueConstraintMappingContextImpl | ||
final class ReturnValueConstraintMappingContextImpl | ||
extends ConstraintMappingContextImplBase | ||
implements ReturnValueConstraintMappingContext { | ||
|
||
private final Method method; | ||
|
||
public ReturnValueConstraintMappingContextImpl(Class<?> beanClass, Method method, ConstraintMappingContext mapping) { | ||
ReturnValueConstraintMappingContextImpl(Class<?> beanClass, Method method, ConstraintMappingContext mapping) { | ||
|
||
super( beanClass, mapping ); | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters