LAPTOP-SNT8I5JK\Boounion
2025-03-26 8942dacbc2bfaf8aec6a360671de20b0fbf32273
SourceCode/Bond/Servo/CPin.cpp
@@ -112,19 +112,18 @@
      return 0;
   }
   int CPin::sendSample(CSample* pSample)
   int CPin::sendIntent(CIntent* pIntent)
   {
      if (m_pConnectedPin != NULL) {
         m_pConnectedPin->recvSample(pSample);
         return m_pConnectedPin->recvIntent(pIntent);
      }
      return 0;
      return FLOW_REJECT;
   }
   int CPin::recvSample(CSample* pSample)
   int CPin::recvIntent(CIntent* pIntent)
   {
      assert(m_pEquipment);
      m_pEquipment->recvSample(this, pSample);
      return 0;
      return m_pEquipment->recvIntent(this, pIntent);
   }
}