Skip to content

Commit b8b4ca2

Browse files
Add missing Usings (broken by ReSharper using optimization because with TRACE defined, nothing uses System.Diagnostics)
1 parent 3be4856 commit b8b4ca2

File tree

5 files changed

+6
-0
lines changed

5 files changed

+6
-0
lines changed

XmlRpc_Wrapper/XMLRPCCallWrapper.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717

1818
#endregion
1919

20+
using System.Diagnostics;
21+
2022
namespace XmlRpc_Wrapper
2123
{
2224
#if !TRACE

XmlRpc_Wrapper/XmlRpcDispatch.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
using System;
1717
using System.Collections;
1818
using System.Collections.Generic;
19+
using System.Diagnostics;
1920
using System.Net.Sockets;
2021

2122
#endregion

XmlRpc_Wrapper/XmlRpcServer.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
//#define REFDEBUG
1616
using System;
1717
using System.Collections.Generic;
18+
using System.Diagnostics;
1819
using System.IO;
1920
using System.Net;
2021
using System.Net.Sockets;

XmlRpc_Wrapper/XmlRpcSource.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
#region USINGZ
1414

1515
using System;
16+
using System.Diagnostics;
1617
using System.Net.Sockets;
1718
using System.Text;
1819

XmlRpc_Wrapper/XmlRpcValue.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414

1515
using System;
1616
using System.Collections.Generic;
17+
using System.Diagnostics;
1718
using System.IO;
1819
using System.Reflection;
1920
using System.Xml;

0 commit comments

Comments
 (0)