You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by ma...@apache.org on 2005/12/29 20:34:29 UTC

svn commit: r359883 - /myfaces/tomahawk/trunk/src/java/org/apache/myfaces/component/UserRoleUtils.java

Author: matzew
Date: Thu Dec 29 11:34:25 2005
New Revision: 359883

URL: http://svn.apache.org/viewcvs?rev=359883&view=rev
Log:
made clazz final, since there is only private constructor

Modified:
    myfaces/tomahawk/trunk/src/java/org/apache/myfaces/component/UserRoleUtils.java

Modified: myfaces/tomahawk/trunk/src/java/org/apache/myfaces/component/UserRoleUtils.java
URL: http://svn.apache.org/viewcvs/myfaces/tomahawk/trunk/src/java/org/apache/myfaces/component/UserRoleUtils.java?rev=359883&r1=359882&r2=359883&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/src/java/org/apache/myfaces/component/UserRoleUtils.java (original)
+++ myfaces/tomahawk/trunk/src/java/org/apache/myfaces/component/UserRoleUtils.java Thu Dec 29 11:34:25 2005
@@ -23,10 +23,17 @@
  * @author Manfred Geiler (latest modification by $Author$)
  * @version $Revision$ $Date$
  */
-public class UserRoleUtils
+public final class UserRoleUtils
 {
     //private static final Log log = LogFactory.getLog(UserRoleUtils.class);
 
+	/**
+	 * Constructor (private one)
+	 */
+	private UserRoleUtils(){
+		
+	}
+	
     /**
      * Gets the comma separated list of visibility user roles from the given component
      * and checks if current user is in one of these roles.