From cf32cf3ae3ed13e25aa8bd2ce63bb885d69659e3 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Sun, 13 Nov 2016 15:35:30 +0100 Subject: [PATCH] Major fix - Merged SafeReflection --- .../tofvesson/reflection/SafeReflection.java | 29 +++++++++---------- 1 file changed, 14 insertions(+), 15 deletions(-) diff --git a/src/com/tofvesson/reflection/SafeReflection.java b/src/com/tofvesson/reflection/SafeReflection.java index 8e2601c..0acf83d 100644 --- a/src/com/tofvesson/reflection/SafeReflection.java +++ b/src/com/tofvesson/reflection/SafeReflection.java @@ -3,9 +3,7 @@ package com.tofvesson.reflection; import java.lang.reflect.Constructor; import sun.misc.Unsafe; import sun.reflect.ConstructorAccessor; - import java.lang.reflect.Array; -import java.lang.reflect.Constructor; import java.lang.reflect.Field; import java.lang.reflect.Method; import java.util.HashMap; @@ -16,6 +14,19 @@ import java.util.HashMap; @SuppressWarnings("unused") public class SafeReflection { + + private static final Unsafe unsafe; + + static{ + Unsafe u = null; + try{ + Field f = Unsafe.class.getDeclaredField("theUnsafe"); + f.setAccessible(true); + u = (Unsafe) f.get(null); + }catch(Exception ignored){} // Exception is never thrown + unsafe = u; + } + /** * Gets the constructor from the defined class with the specified parameters. * @param c Class to get constructor from. @@ -40,6 +51,7 @@ public class SafeReflection { */ public static Constructor getFirstConstructor(Class c){ try { + @SuppressWarnings("unchecked") Constructor c1 = (Constructor) c.getDeclaredConstructors()[0]; c1.setAccessible(true); return c1; @@ -47,19 +59,6 @@ public class SafeReflection { return null; } - - private static final Unsafe unsafe; - - static{ - Unsafe u = null; - try{ - Field f = Unsafe.class.getDeclaredField("theUnsafe"); - f.setAccessible(true); - u = (Unsafe) f.get(null); - }catch(Exception ignored){} // Exception is never thrown - unsafe = u; - } - /** * Gets the method from the defined class by name and parameters. * Method is accessible.