Skip to content

Commit

Permalink
Merge pull request #398 from agoncal/FORGE-1635
Browse files Browse the repository at this point in the history
Implemented FORGE-1635
  • Loading branch information
gastaldi committed Mar 5, 2014
2 parents 543d1ba + bf45b45 commit c59d97f
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,6 @@ public void validate(UIValidationContext validator)
@Override
protected boolean isProjectRequired()
{
return false;
return true;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,6 @@ public void validate(UIValidationContext validator)
@Override
protected boolean isProjectRequired()
{
return false;
return true;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ public Result execute(UIExecutionContext context) throws Exception
@Override
protected boolean isProjectRequired()
{
return false;
return true;
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,6 @@ public Result execute(UIExecutionContext context) throws Exception
@Override
protected boolean isProjectRequired()
{
return false;
return true;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,6 @@ public Result execute(UIExecutionContext context) throws Exception
@Override
protected boolean isProjectRequired()
{
return false;
return true;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,6 @@ public Result execute(UIExecutionContext context) throws Exception
@Override
protected boolean isProjectRequired()
{
return false;
return true;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ public Result execute(UIExecutionContext context) throws Exception
@Override
protected boolean isProjectRequired()
{
return false;
return true;
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@ public NavigationResult next(UINavigationContext context) throws Exception
@Override
protected boolean isProjectRequired()
{
return false;
return true;
}

@Override
Expand Down

0 comments on commit c59d97f

Please sign in to comment.