You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by sk...@apache.org on 2008/02/17 16:55:33 UTC

svn commit: r628496 - /myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/conversation/AccessScopeManager.java

Author: skitching
Date: Sun Feb 17 07:55:32 2008
New Revision: 628496

URL: http://svn.apache.org/viewvc?rev=628496&view=rev
Log:
trivial cleanup: don't need final method modifier on final class.

Modified:
    myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/conversation/AccessScopeManager.java

Modified: myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/conversation/AccessScopeManager.java
URL: http://svn.apache.org/viewvc/myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/conversation/AccessScopeManager.java?rev=628496&r1=628495&r2=628496&view=diff
==============================================================================
--- myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/conversation/AccessScopeManager.java (original)
+++ myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/conversation/AccessScopeManager.java Sun Feb 17 07:55:32 2008
@@ -91,13 +91,11 @@
 	/**
 	 * Add a conversation to the list of accessed conversations.
 	 * <p>
-	 * Notice: this method is final for performance reasons.
-	 * <p>
 	 * This method is expected to be called via AOP proxies wrapped around each conversation-scoped
 	 * bean; any invocation of a method on such a bean causes the conversation associated with that
 	 * bean to be added to the accessed list here.
 	 */
-	public final void addConversationAccess(String conversationName)
+	public void addConversationAccess(String conversationName)
 	{
 		// Don't bother tracking accessed conversations if we will never use the data.
 		// Otherwise, add this conversation name to the list of accessed conversations.