Merge pull request #439 from mono-soc-2012/garyb/iconfix
[mono.git] / mcs / class / System / System.Net.NetworkInformation / IPv4InterfaceStatistics.cs
index d3b32c9ffc0dc5c10b33d8bc9ab8bd2be7addc1d..2ddb462c31c28a56aa75e1da562c1bf87f5b29d2 100644 (file)
@@ -27,7 +27,6 @@
 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
-#if NET_2_0
 namespace System.Net.NetworkInformation {
        public abstract class IPv4InterfaceStatistics {
                protected IPv4InterfaceStatistics ()
@@ -206,11 +205,11 @@ namespace System.Net.NetworkInformation {
        // dummy class
        class MacOsIPv4InterfaceStatistics : IPv4InterfaceStatistics
        {
-               MacOsNetworkInterface macos;
+               //MacOsNetworkInterface macos;
                
                public MacOsIPv4InterfaceStatistics (MacOsNetworkInterface parent)
                {
-                       macos = parent;
+                       //macos = parent;
                }
 
                public override long BytesReceived {
@@ -263,5 +262,4 @@ namespace System.Net.NetworkInformation {
        }
        
 }
-#endif