Remove two TODO notes for cpiro that are no longer applicable.
authorDavid Reiss <dreiss@apache.org>
Wed, 11 Jun 2008 01:03:03 +0000 (01:03 +0000)
committerDavid Reiss <dreiss@apache.org>
Wed, 11 Jun 2008 01:03:03 +0000 (01:03 +0000)
Reviewed by: cpiro

git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@666456 13f79535-47bb-0310-9956-ffa450edef68

lib/alterl/src/thrift_buffered_transport.erl
lib/alterl/src/thrift_framed_transport.erl

index c7ab295..d71291d 100644 (file)
@@ -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 = []}}.
 
index 2e77d73..c073ef0 100644 (file)
@@ -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 = []}}.