Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/ikvm-fork.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjfrijters <jfrijters>2013-02-23 12:10:56 +0400
committerjfrijters <jfrijters>2013-02-23 12:10:56 +0400
commitf520a240dd6e1a2f2b9ba99929460c459523c547 (patch)
tree1481f3b920ef25b5f074018f284e3857bd5e7c4c
parent935d995617c574bfe841173d2832034568469b3f (diff)
Removed now unused methods.
-rw-r--r--runtime/common.cs12
1 files changed, 0 insertions, 12 deletions
diff --git a/runtime/common.cs b/runtime/common.cs
index 94facfce..84e35826 100644
--- a/runtime/common.cs
+++ b/runtime/common.cs
@@ -269,18 +269,6 @@ namespace IKVM.NativeCode.ikvm.runtime
#endif
}
- private static Assembly GetAssemblyFromClass(jlClass clazz)
- {
- TypeWrapper wrapper = TypeWrapper.FromClass(clazz);
- AssemblyClassLoader_ acl = wrapper.GetClassLoader() as AssemblyClassLoader_;
- return acl != null ? acl.GetAssembly(wrapper) : null;
- }
-
- private static bool IsDynamic(jlClass clazz)
- {
- return TypeWrapper.FromClass(clazz) is DynamicTypeWrapper;
- }
-
// NOTE the array may contain duplicates!
public static string[] GetPackages(Assembly assembly)
{