better toString on transport future

This commit is contained in:
kimchy 2011-07-10 22:56:14 +03:00
parent 7ef41eefea
commit e489ad2221
1 changed files with 4 additions and 0 deletions

View File

@ -87,4 +87,8 @@ public class PlainTransportFuture<V extends Streamable> extends AbstractFuture<V
handler.handleException(exp); handler.handleException(exp);
setException(exp); setException(exp);
} }
@Override public String toString() {
return "future(" + handler.toString() + ")";
}
} }