src/lte/model/lte-phy.cc
changeset 8729 74de12409ee5
parent 8728 5a99218bfd1b
child 9035 e40974228d94
child 9337 ae7126b266ce
--- a/src/lte/model/lte-phy.cc	Wed Apr 25 15:57:29 2012 +0200
+++ b/src/lte/model/lte-phy.cc	Wed Apr 25 17:36:25 2012 +0200
@@ -48,19 +48,9 @@
     m_ulBandwidth (0),
     m_dlBandwidth (0),
     m_rbgSize (0),
-    m_macChTtiDelay (2) // 1 TTI delay between MAC and CH
+    m_macChTtiDelay (0)
 {
   NS_LOG_FUNCTION (this);
-  for (int i = 0; i < m_macChTtiDelay; i++)
-    {
-      Ptr<PacketBurst> pb = CreateObject <PacketBurst> ();
-      m_packetBurstQueue.push_back (pb);
-    }
-  for (int i = 0; i < m_macChTtiDelay; i++)
-    {
-      std::list<Ptr<IdealControlMessage> > l;
-      m_controlMessagesQueue.push_back (l);
-    }
 }