()
| 70 | * @see javax.security.auth.Destroyable#destroy() |
| 71 | */ |
| 72 | public void destroy() throws DestroyFailedException |
| 73 | { |
| 74 | if (this.parent==null) return; |
| 75 | |
| 76 | this.parent.deregister(this); |
| 77 | this.parent = null; |
| 78 | } |
| 79 | |
| 80 | /* (non-Javadoc) |
| 81 | * @see javax.security.auth.Destroyable#isDestroyed() |
nothing calls this directly
no test coverage detected