Index: trunk/BNC/src/upload/bncrtnetuploadcaster.cpp
===================================================================
--- trunk/BNC/src/upload/bncrtnetuploadcaster.cpp	(revision 9837)
+++ trunk/BNC/src/upload/bncrtnetuploadcaster.cpp	(revision 9838)
@@ -264,8 +264,5 @@
   QMutexLocker locker(&_mutex);
 
-
-
-
-  /* Append to internal buffer
+  // Append to internal buffer
   // -------------------------
   _rtnetStreamBuffer.append(QByteArray(buffer, bufLen));
@@ -309,35 +306,4 @@
     emit(newMessage(
           "bncRtnetUploadCaster: less than 2 lines to decode " + _casterID.toLatin1(), false));
-    return;
-  }
-*/
-
-
-  // Append to internal buffer
-  // -------------------------
-  _rtnetStreamBuffer.append(QByteArray(buffer, bufLen));
-
-  // Select buffer part that contains last epoch
-  // -------------------------------------------
-  QStringList lines;
-  int iEpoBeg = _rtnetStreamBuffer.lastIndexOf('*');   // begin of last epoch
-  if (iEpoBeg == -1) {
-    _rtnetStreamBuffer.clear();
-    return;
-  }
-  _rtnetStreamBuffer = _rtnetStreamBuffer.mid(iEpoBeg);
-
-  int iEpoEnd = _rtnetStreamBuffer.lastIndexOf("EOE"); // end   of last epoch
-  if (iEpoEnd == -1) {
-    return;
-  }
-  else {
-    lines = _rtnetStreamBuffer.left(iEpoEnd).split('\n', QString::SkipEmptyParts);
-    _rtnetStreamBuffer = _rtnetStreamBuffer.mid(iEpoEnd+3);
-  }
-
-  if (lines.size() < 2) {
-      emit(newMessage(
-            "bncRtnetUploadCaster: less than 2 lines to decode " + _casterID.toLatin1(), false));
     return;
   }
