diff options
| author | Stepan Goremykin <goremukin@gmail.com> | 2023-04-06 19:11:45 +0200 |
|---|---|---|
| committer | Stepan Goremykin <goremukin@gmail.com> | 2023-04-06 19:17:28 +0200 |
| commit | 9d738bb60159b4846554f7d15c325130296ad9eb (patch) | |
| tree | bc98215dcb5447046ebb6e129e4ce8e3b8eadc5c /RSSDP | |
| parent | 08ce4772262cab7961ea1000b0a9dd536244a667 (diff) | |
Remove redundant ToString call
Diffstat (limited to 'RSSDP')
| -rw-r--r-- | RSSDP/SsdpDevicePublisher.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/RSSDP/SsdpDevicePublisher.cs b/RSSDP/SsdpDevicePublisher.cs index a7767b3c0..e073ffa96 100644 --- a/RSSDP/SsdpDevicePublisher.cs +++ b/RSSDP/SsdpDevicePublisher.cs @@ -644,7 +644,7 @@ namespace Rssdp.Infrastructure public string Key { - get { return this.SearchTarget + ":" + this.EndPoint.ToString(); } + get { return this.SearchTarget + ":" + this.EndPoint; } } public bool IsOld() |
