Author: trustin
Date: Tue Nov 9 04:49:03 2004
New Revision: 57031
Modified:
incubator/directory/seda/trunk/src/test/org/apache/seda/ProtocolTestCase.java
Log:
Fixed: ProtocolTestCase.tearDown() does not unbind UDP port.
Modified:
incubator/directory/seda/trunk/src/test/org/apache/seda/ProtocolTestCase.java
==============================================================================
---
incubator/directory/seda/trunk/src/test/org/apache/seda/ProtocolTestCase.java
(original)
+++
incubator/directory/seda/trunk/src/test/org/apache/seda/ProtocolTestCase.java
Tue Nov 9 04:49:03 2004
@@ -67,6 +67,7 @@
{
super.tearDown();
fe.getTCPListenerManager().unbind(tcpConfig);
+ fe.getUDPListenerManager().unbind(udpConfig);
fe.stop();
fe = null;
}