[Cleanup] Removed TARGET_JVM
[mono.git] / mcs / class / System.Data / System.Data.Common / DbProviderFactories.cs
index 63c9a560ce21bd1050ba00714ff1203becc7c816..0ea515a3455225089acd4a687aef53509eb85b09 100644 (file)
@@ -49,11 +49,7 @@ namespace System.Data.Common {
                public static DbProviderFactory GetFactory (DataRow providerRow)
                {
                        string assemblyType = (string) providerRow ["AssemblyQualifiedName"];
-#if TARGET_JVM // case insensitive GetType is not supported
-                       Type type = Type.GetType (assemblyType, false);
-#else
                        Type type = Type.GetType (assemblyType, false, true);
-#endif
                        if (type != null && type.IsSubclassOf (typeof (DbProviderFactory))) {
                                // Provider factories are singletons with Instance field having
                                // the sole instance