Make AbstractMvcView.shouldValidate() protected
Issues: SWF-1458
This commit is contained in:
@@ -521,7 +521,7 @@ public abstract class AbstractMvcView implements View {
|
||||
* @param transition the matched transition
|
||||
* @return true if binding should occur, false if not
|
||||
*/
|
||||
private boolean shouldValidate(Object model, TransitionDefinition transition) {
|
||||
protected boolean shouldValidate(Object model, TransitionDefinition transition) {
|
||||
Boolean validateAttribute = getValidateAttribute(transition);
|
||||
if (validateAttribute != null) {
|
||||
return validateAttribute.booleanValue();
|
||||
|
||||
Reference in New Issue
Block a user