fix bug in HgHookManager

This commit is contained in:
Sebastian Sdorra
2011-08-23 16:13:28 +02:00
parent 60eea3541e
commit 68ad2afb35

View File

@@ -153,7 +153,7 @@ public class HgHookManager
*/
public boolean isAcceptAble(String challenge)
{
return challenge.equals(challenge);
return this.challenge.equals(challenge);
}
//~--- methods --------------------------------------------------------------