diff --git a/FneSystemBase.cs b/FneSystemBase.cs
index 03f6f28..09974c9 100644
--- a/FneSystemBase.cs
+++ b/FneSystemBase.cs
@@ -527,30 +527,6 @@ namespace fnecore
peer.SendMaster(FneBase.CreateOpcode(Constants.NET_FUNC_PROTOCOL, Constants.NET_PROTOCOL_SUBFUNC_P25), payload, Constants.RtpCallEndSeq, callData.TxStreamID);
}
- ///
- /// Helper to send a DVM call termination TSDU.
- ///
- ///
- ///
- public void SendDVMCallTermination(uint srcId, uint dstId)
- {
- OSP_DVM_LC_CALL_TERM osp = new OSP_DVM_LC_CALL_TERM(dstId, srcId);
-
- RemoteCallData callData = new RemoteCallData
- {
- MFId = P25Defines.P25_MFG_DVM_OCS,
- SrcId = srcId,
- DstId = dstId,
- LCO = P25Defines.LC_CALL_TERM
- };
-
- byte[] tsbk = new byte[P25Defines.P25_TSBK_LENGTH_BYTES];
-
- osp.Encode(ref tsbk);
-
- SendP25TSBK(callData, tsbk);
- }
-
///
/// Helper to send a P25 TDU message.
///