Skip to content
Snippets Groups Projects
Commit 3a764971 authored by Tucker Gary Siegel's avatar Tucker Gary Siegel
Browse files

change

parent 7524f9fa
No related branches found
No related tags found
No related merge requests found
...@@ -3,7 +3,6 @@ package edu.umd.dawn.common.annotations; ...@@ -3,7 +3,6 @@ package edu.umd.dawn.common.annotations;
import java.lang.annotation.Annotation; import java.lang.annotation.Annotation;
import org.aspectj.lang.ProceedingJoinPoint; import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.Aspect; import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Pointcut;
import org.aspectj.lang.reflect.MethodSignature; import org.aspectj.lang.reflect.MethodSignature;
import org.springframework.stereotype.Component; import org.springframework.stereotype.Component;
...@@ -14,9 +13,6 @@ import org.springframework.stereotype.Component; ...@@ -14,9 +13,6 @@ import org.springframework.stereotype.Component;
@Component @Component
public class AspectBase<T extends Annotation> { public class AspectBase<T extends Annotation> {
@Pointcut(value = "execution(* *.*(..))")
protected void allMethods() {}
protected String getFullDescriptor(ProceedingJoinPoint jointPoint) { protected String getFullDescriptor(ProceedingJoinPoint jointPoint) {
String className = ((MethodSignature) jointPoint.getSignature()).getDeclaringTypeName(); String className = ((MethodSignature) jointPoint.getSignature()).getDeclaringTypeName();
String methodName = String methodName =
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment