@ -82,25 +82,25 @@ public class DefaultIntroductionAdvisor implements IntroductionAdvisor, ClassFil
@@ -82,25 +82,25 @@ public class DefaultIntroductionAdvisor implements IntroductionAdvisor, ClassFil
Assert.notNull(intf,"Interface must not be null");
if(!intf.isInterface()){
thrownewIllegalArgumentException("Specified class ["+intf.getName()+"] must be an interface");
publicvoidaddInterface(Class<?>ifc){
Assert.notNull(ifc,"Interface must not be null");
if(!ifc.isInterface()){
thrownewIllegalArgumentException("Specified class ["+ifc.getName()+"] must be an interface");
}
this.interfaces.add(intf);
this.interfaces.add(ifc);
}
@Override
@ -113,8 +113,8 @@ public class DefaultIntroductionAdvisor implements IntroductionAdvisor, ClassFil
@@ -113,8 +113,8 @@ public class DefaultIntroductionAdvisor implements IntroductionAdvisor, ClassFil