Author: dreiss
Date: Tue Jun 10 18:03:03 2008
New Revision: 666456
URL: http://svn.apache.org/viewvc?rev=666456&view=rev
Log:
Remove two TODO notes for cpiro that are no longer applicable.
Reviewed by: cpiro
Modified:
incubator/thrift/trunk/lib/alterl/src/thrift_buffered_transport.erl
incubator/thrift/trunk/lib/alterl/src/thrift_framed_transport.erl
Modified: incubator/thrift/trunk/lib/alterl/src/thrift_buffered_transport.erl
URL:
http://svn.apache.org/viewvc/incubator/thrift/trunk/lib/alterl/src/thrift_buffered_transport.erl?rev=666456&r1=666455&r2=666456&view=diff
==============================================================================
--- incubator/thrift/trunk/lib/alterl/src/thrift_buffered_transport.erl
(original)
+++ incubator/thrift/trunk/lib/alterl/src/thrift_buffered_transport.erl Tue Jun
10 18:03:03 2008
@@ -87,8 +87,6 @@
%% 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 = []}}.
Modified: incubator/thrift/trunk/lib/alterl/src/thrift_framed_transport.erl
URL:
http://svn.apache.org/viewvc/incubator/thrift/trunk/lib/alterl/src/thrift_framed_transport.erl?rev=666456&r1=666455&r2=666456&view=diff
==============================================================================
--- incubator/thrift/trunk/lib/alterl/src/thrift_framed_transport.erl (original)
+++ incubator/thrift/trunk/lib/alterl/src/thrift_framed_transport.erl Tue Jun
10 18:03:03 2008
@@ -88,8 +88,6 @@
%% 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 = []}}.