Index: trunk/FACT++/src/fadctrl.cc
===================================================================
--- trunk/FACT++/src/fadctrl.cc	(revision 10820)
+++ trunk/FACT++/src/fadctrl.cc	(revision 10821)
@@ -255,42 +255,4 @@
         Cmd(FAD::kCmdTriggerLine, true);
         Cmd(FAD::kCmdSingleTrigger);
-    }
-
-    void HandleReadTimeout(const bs::error_code &error)
-    {
-        /*
-        return;
-        Warn("Reading header timed-out... restarting.");
-        StartReadHeader();
-        return;
-         */
-        if (error && error!=ba::error::basic_errors::operation_aborted)
-        {
-            ostringstream str;
-            str << "Read timeout of " << URL() << ": " << error.message() << " (" << error << ")";// << endl;
-            Error(str);
-
-            PostClose();
-            return;
-
-        }
-
-        if (!is_open())
-        {
-            // For example: Here we could schedule a new accept if we
-            // would not want to allow two connections at the same time.
-            return;
-        }
-
-        // Check whether the deadline has passed. We compare the deadline
-        // against the current time since a new asynchronous operation
-        // may have moved the deadline before this actor had a chance
-        // to run.
-        if (fInTimeout.expires_at() > ba::deadline_timer::traits_type::now())
-            return;
-
-        Error("Timeout reading data from "+URL());
-
-        PostClose();
     }
 
