From 22e2b4ab35e19ed66f807cc4d6a242f567e4a1c3 Mon Sep 17 00:00:00 2001 From: John Dennis Casey Date: Wed, 23 Jan 2008 18:54:20 +0000 Subject: [PATCH] Commenting out debug pointcut because it causes class sizes to balloon. git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@614620 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/maven/CoreDebuggingAspect.aj | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/maven-core/src/main/aspect/org/apache/maven/CoreDebuggingAspect.aj b/maven-core/src/main/aspect/org/apache/maven/CoreDebuggingAspect.aj index ef94f3dd52..0a4587b1d6 100644 --- a/maven-core/src/main/aspect/org/apache/maven/CoreDebuggingAspect.aj +++ b/maven-core/src/main/aspect/org/apache/maven/CoreDebuggingAspect.aj @@ -15,15 +15,15 @@ import java.util.List; public aspect CoreDebuggingAspect { - after() throwing ( RuntimeException e ): -// adviceexecution( ) -// && args( jp ) - call( * *..*.*(..)) - && !within( CoreDebuggingAspect+ ) - && !handler( * ) - { - System.out.println( "Error: " + e.getClass().getName() + "\nwas in join point: " + thisJoinPoint.toLongString() + "\n(at: " + thisJoinPoint.getSourceLocation() + ")" ); - } +// after() throwing ( RuntimeException e ): +//// adviceexecution( ) +//// && args( jp ) +// call( * *..*.*(..)) +// && !within( CoreDebuggingAspect+ ) +// && !handler( * ) +// { +// System.out.println( "Error: " + e.getClass().getName() + "\nwas in join point: " + thisJoinPoint.toLongString() + "\n(at: " + thisJoinPoint.getSourceLocation() + ")" ); +// } // after( MavenExecutionRequest request ) returning( List projects ): // call( List DefaultMaven.getProjects( MavenExecutionRequest ) )