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

svn commit: r1236307 - /tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/services/LoggingAdvisor.java

Author: hlship
Date: Thu Jan 26 17:33:08 2012
New Revision: 1236307

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

Modified:
    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/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=1236307&r1=1236306&r2=1236307&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:08 2012
@@ -1,4 +1,4 @@
-// Copyright 2009, 2011 The Apache Software Foundation
+// Copyright 2009, 2011, 2012 The Apache Software Foundation
 //
 // Licensed under the Apache License, Version 2.0 (the "License");
 // you may not use this file except in compliance with the License.
@@ -21,6 +21,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
  */
 public interface LoggingAdvisor
 {
@@ -31,5 +32,5 @@ public interface LoggingAdvisor
      *            log used for debug level logging messages by the interceptor
      * @param methodAdviceReceiver
      */
-    <T> void addLoggingAdvice(Logger logger, MethodAdviceReceiver methodAdviceReceiver);
+    void addLoggingAdvice(Logger logger, MethodAdviceReceiver methodAdviceReceiver);
 }