Override prepareOutbound() in VerifiedEstablishState

This commit is contained in:
zab2
2013-07-30 17:13:34 +00:00
parent c8f22fdfd0
commit 63414f0348

View File

@ -790,6 +790,10 @@ class EstablishState {
private static class VerifiedEstablishState extends EstablishState {
@Override public boolean isComplete() { return true; }
@Override public void prepareOutbound() {
Log log =RouterContext.getCurrentContext().logManager().getLog(VerifiedEstablishState.class);
log.warn("prepareOutbound() on verified state, doing nothing!");
}
}
/** @deprecated unused */