correct wordings
This commit is contained in:
parent
918e2a6882
commit
a8b9b01f3d
|
@ -235,7 +235,7 @@ public class LocalTransport extends AbstractLifecycleComponent<Transport> implem
|
||||||
try {
|
try {
|
||||||
handler.handleResponse(streamable);
|
handler.handleResponse(streamable);
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
handleException(handler, new ResponseHandlerFailureTransportException("Failed to handler response", e));
|
handleException(handler, new ResponseHandlerFailureTransportException("Failed to handle response", e));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -244,7 +244,7 @@ public class LocalTransport extends AbstractLifecycleComponent<Transport> implem
|
||||||
//noinspection unchecked
|
//noinspection unchecked
|
||||||
handler.handleResponse(streamable);
|
handler.handleResponse(streamable);
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
handleException(handler, new ResponseHandlerFailureTransportException("Failed to handler response", e));
|
handleException(handler, new ResponseHandlerFailureTransportException("Failed to handle response", e));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -112,7 +112,7 @@ public class MessageChannelHandler extends SimpleChannelUpstreamHandler {
|
||||||
try {
|
try {
|
||||||
handler.handleResponse(streamable);
|
handler.handleResponse(streamable);
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
handleException(handler, new ResponseHandlerFailureTransportException("Failed to handler response", e));
|
handleException(handler, new ResponseHandlerFailureTransportException("Failed to handle response", e));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -121,7 +121,7 @@ public class MessageChannelHandler extends SimpleChannelUpstreamHandler {
|
||||||
//noinspection unchecked
|
//noinspection unchecked
|
||||||
handler.handleResponse(streamable);
|
handler.handleResponse(streamable);
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
handleException(handler, new ResponseHandlerFailureTransportException("Failed to handler response", e));
|
handleException(handler, new ResponseHandlerFailureTransportException("Failed to handle response", e));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue