Merge pull request #910 from akoeplinger/cleanup-test-ignores
[mono.git] / mcs / class / corlib / System.IO / DriveNotFoundException.cs
index f4ea126912ac36b239889a25fc9510cbc0a50a12..52434e251e7ee354576e0598b94034566fdfa9e5 100644 (file)
@@ -28,7 +28,6 @@
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
-#if NET_2_0
 using System.Runtime.InteropServices;
 using System.Runtime.Serialization;
 
@@ -53,8 +52,8 @@ namespace System.IO
                        this.HResult = ErrorCode;
                }
 
-               public DriveNotFoundException (string message, Exception inner)
-                       : base (message, inner)
+               public DriveNotFoundException (string message, Exception innerException)
+                       : base (message, innerException)
                {
                        this.HResult = ErrorCode;
                }
@@ -65,4 +64,3 @@ namespace System.IO
                }
        }
 }
-#endif