diff --git a/fine-cglib/src/com/fr/third/net/sf/cglib/reflect/MethodDelegate.java b/fine-cglib/src/com/fr/third/net/sf/cglib/reflect/MethodDelegate.java index 51279a17d..6f0dc85d0 100644 --- a/fine-cglib/src/com/fr/third/net/sf/cglib/reflect/MethodDelegate.java +++ b/fine-cglib/src/com/fr/third/net/sf/cglib/reflect/MethodDelegate.java @@ -15,9 +15,6 @@ */ package com.fr.third.net.sf.cglib.reflect; -import java.lang.reflect.*; -import java.security.ProtectionDomain; - import com.fr.third.net.sf.cglib.core.AbstractClassGenerator; import com.fr.third.net.sf.cglib.core.ClassEmitter; import com.fr.third.net.sf.cglib.core.CodeEmitter; @@ -28,11 +25,12 @@ import com.fr.third.net.sf.cglib.core.MethodInfo; import com.fr.third.net.sf.cglib.core.ReflectUtils; import com.fr.third.net.sf.cglib.core.Signature; import com.fr.third.net.sf.cglib.core.TypeUtils; -import com.fr.third.net.sf.cglib.*; -import com.fr.third.net.sf.cglib.core.*; import com.fr.third.org.objectweb.asm.ClassVisitor; import com.fr.third.org.objectweb.asm.Type; +import java.lang.reflect.Method; +import java.security.ProtectionDomain; + // TODO: don't require exact match for return type /** diff --git a/fine-jodd/src/com/fr/third/jodd/exception/ExceptionUtil.java b/fine-jodd/src/com/fr/third/jodd/exception/ExceptionUtil.java index 8ee74fe07..48d00afbc 100644 --- a/fine-jodd/src/com/fr/third/jodd/exception/ExceptionUtil.java +++ b/fine-jodd/src/com/fr/third/jodd/exception/ExceptionUtil.java @@ -255,7 +255,7 @@ public class ExceptionUtil { if (throwable instanceof RuntimeException) { throw (RuntimeException) throwable; } - Thread.currentThread().stop(throwable); + throw new UnsupportedOperationException(); } /**