Browse Source

big refactoring

refactoring
aclement 16 years ago
parent
commit
88759c380e

+ 1
- 0
aspectj5rt/java5-src/org/aspectj/internal/lang/reflect/AjTypeImpl.java View File

@@ -356,6 +356,7 @@ public class AjTypeImpl<T> implements AjType<T> {

private boolean isReallyAMethod(Method method) {
if (method.getName().startsWith(ajcMagic)) return false;
if (method.getAnnotations().length==0) return true;
if (method.isAnnotationPresent(org.aspectj.lang.annotation.Pointcut.class)) return false;
if (method.isAnnotationPresent(Before.class)) return false;
if (method.isAnnotationPresent(After.class)) return false;

Loading…
Cancel
Save