From: David Reiss Date: Wed, 11 Jun 2008 01:03:03 +0000 (+0000) Subject: Remove two TODO notes for cpiro that are no longer applicable. X-Git-Tag: 0.2.0~706 X-Git-Url: https://source.supwisdom.com/gerrit/gitweb?a=commitdiff_plain;h=daeed4d3b693765b5eabcf8420339f9081241252;p=common%2Fthrift.git Remove two TODO notes for cpiro that are no longer applicable. Reviewed by: cpiro git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@666456 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/lib/alterl/src/thrift_buffered_transport.erl b/lib/alterl/src/thrift_buffered_transport.erl index c7ab295b..d71291d3 100644 --- a/lib/alterl/src/thrift_buffered_transport.erl +++ b/lib/alterl/src/thrift_buffered_transport.erl @@ -87,8 +87,6 @@ read(Transport, Len) when is_integer(Len) -> %% Description: Initiates the server %%-------------------------------------------------------------------- init([Wrapped]) -> - %% TODO(cpiro): need to trap exits here so when transport exits - %% normally from under our feet we exit normally {ok, #buffered_transport{wrapped = Wrapped, write_buffer = []}}. diff --git a/lib/alterl/src/thrift_framed_transport.erl b/lib/alterl/src/thrift_framed_transport.erl index 2e77d73f..c073ef04 100644 --- a/lib/alterl/src/thrift_framed_transport.erl +++ b/lib/alterl/src/thrift_framed_transport.erl @@ -88,8 +88,6 @@ read(Transport, Len) when is_integer(Len) -> %% Description: Initiates the server %%-------------------------------------------------------------------- init([Wrapped]) -> - %% TODO(cpiro): need to trap exits here so when transport exits - %% normally from under our feet we exit normally {ok, #framed_transport{wrapped = Wrapped, read_buffer = [], write_buffer = []}}.