Remove redundant ToString call

This commit is contained in:
Stepan Goremykin
2023-04-06 19:11:45 +02:00
parent 08ce477226
commit 9d738bb601
3 changed files with 3 additions and 3 deletions

View File

@@ -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()