dev@shoal.java.net

(Trivial) About Router#removeFailureRecoveryAFDestination()

From: Bongjae Chang <carryel_at_korea.com>
Date: Thu, 10 Sep 2009 17:00:26 +0900

Hi,

I found an obvious bug in Router.java accidentally. :)

In Router.java
---
public void removeFailureRecoveryAFDestination(final String componentName) {
    messageAF.remove(componentName);
}
---

I think that it should be fixed like this:
---
public void removeFailureRecoveryAFDestination(final String componentName) {
    failureRecoveryAF.remove(componentName);
}
---

Thanks.

--
Bongjae Chang