Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Merge branch 'master' of github.com:zanata/zanata
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Eng committed Mar 15, 2012
2 parents 80280a8 + 98e6968 commit 7228c17
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -215,9 +215,9 @@ public boolean isMaintainer(HProject proj)
{
// TODO consider implementing business key equality and using
// getMaintainerProjects().contains(proj)
for (HPerson maintainer : proj.getMaintainers())
for (HProject project : getMaintainerProjects())
{
if (maintainer.getId().equals( this.getId() ))
if (project.getId().equals( proj.getId() ))
{
return true;
}
Expand Down

0 comments on commit 7228c17

Please sign in to comment.