git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@775094 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary Tully 2009-05-15 12:02:22 +00:00
parent 558ff7802d
commit 634a52a4a2
1 changed files with 3 additions and 1 deletions

View File

@ -49,7 +49,9 @@ public final class SelectorSelection {
}
public void disable() {
key.interestOps(0);
if (key.isValid()) {
key.interestOps(0);
}
}
public void close() {