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 c7ab295..d71291d 100644
--- a/lib/alterl/src/thrift_buffered_transport.erl
+++ b/lib/alterl/src/thrift_buffered_transport.erl
@@ -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 = []}}.
diff --git a/lib/alterl/src/thrift_framed_transport.erl b/lib/alterl/src/thrift_framed_transport.erl
index 2e77d73..c073ef0 100644
--- a/lib/alterl/src/thrift_framed_transport.erl
+++ b/lib/alterl/src/thrift_framed_transport.erl
@@ -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 = []}}.