|
3 | 3 |
|
4 | 4 | namespace Android.Support.Graphics.Drawable |
5 | 5 | { |
6 | | - public partial class VectorDrawableCommon |
7 | | - { |
8 | | - /* |
9 | | - * Oddly, java_class_handle, class_ref, and ThresholdClass/ThresholdType were not being emitted |
10 | | - * for this class, and since this class subclasses Drawable, it was trying to use the superclass's members |
11 | | - * which are inaccessible. Adding these in manually *seems* to fix the issue |
12 | | - */ |
13 | | - internal static new IntPtr java_class_handle; |
14 | | - internal static new IntPtr class_ref { |
15 | | - get { |
16 | | - return JNIEnv.FindClass ("android/support/graphics/drawable/VectorDrawableCommon", ref java_class_handle); |
17 | | - } |
18 | | - } |
| 6 | + //public partial class VectorDrawableCommon |
| 7 | + //{ |
| 8 | + // /* |
| 9 | + // * Oddly, java_class_handle, class_ref, and ThresholdClass/ThresholdType were not being emitted |
| 10 | + // * for this class, and since this class subclasses Drawable, it was trying to use the superclass's members |
| 11 | + // * which are inaccessible. Adding these in manually *seems* to fix the issue |
| 12 | + // */ |
| 13 | + // internal static new IntPtr java_class_handle; |
| 14 | + // internal static new IntPtr class_ref { |
| 15 | + // get { |
| 16 | + // return JNIEnv.FindClass ("android/support/graphics/drawable/VectorDrawableCommon", ref java_class_handle); |
| 17 | + // } |
| 18 | + // } |
19 | 19 |
|
20 | | - protected override IntPtr ThresholdClass { |
21 | | - get { return class_ref; } |
22 | | - } |
| 20 | + // protected override IntPtr ThresholdClass { |
| 21 | + // get { return class_ref; } |
| 22 | + // } |
23 | 23 |
|
24 | | - protected override global::System.Type ThresholdType { |
25 | | - get { return typeof (VectorDrawableCommon); } |
26 | | - } |
27 | | - } |
| 24 | + // protected override global::System.Type ThresholdType { |
| 25 | + // get { return typeof (VectorDrawableCommon); } |
| 26 | + // } |
| 27 | + //} |
28 | 28 | } |
29 | 29 |
|
0 commit comments