You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by hl...@apache.org on 2012/01/26 18:33:18 UTC

svn commit: r1236309 - in /tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc: internal/services/LoggingAdvisorImpl.java services/LoggingAdvisor.java

Author: hlship
Date: Thu Jan 26 17:33:18 2012
New Revision: 1236309

URL: http://svn.apache.org/viewvc?rev=1236309&view=rev
Log:
Remove unused <T> generic type

Modified:
    tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/internal/services/LoggingAdvisorImpl.java
    tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/services/LoggingAdvisor.java

Modified: tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/internal/services/LoggingAdvisorImpl.java
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/internal/services/LoggingAdvisorImpl.java?rev=1236309&r1=1236308&r2=1236309&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/internal/services/LoggingAdvisorImpl.java (original)
+++ tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/internal/services/LoggingAdvisorImpl.java Thu Jan 26 17:33:18 2012
@@ -31,7 +31,7 @@ public class LoggingAdvisorImpl implemen
         this.exceptionTracker = exceptionTracker;
     }
 
-    public <T> void addLoggingAdvice(Logger logger, MethodAdviceReceiver receiver)
+    public void addLoggingAdvice(Logger logger, MethodAdviceReceiver receiver)
     {
         MethodAdvice advice = new LoggingAdvice(logger, exceptionTracker);
 

Modified: tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/services/LoggingAdvisor.java
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/services/LoggingAdvisor.java?rev=1236309&r1=1236308&r2=1236309&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/services/LoggingAdvisor.java (original)
+++ tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/services/LoggingAdvisor.java Thu Jan 26 17:33:18 2012
@@ -19,7 +19,7 @@ import org.slf4j.Logger;
 
 /**
  * A service used in conjunction with a service advisor method to add logging advice to a service.
- * 
+ *
  * @since 5.1.0.0
  * @see org.apache.tapestry5.ioc.annotations.Advise
  */
@@ -27,7 +27,7 @@ public interface LoggingAdvisor
 {
     /**
      * Adds logging advice to all methods of the object.
-     * 
+     *
      * @param logger
      *            log used for debug level logging messages by the interceptor
      * @param methodAdviceReceiver