You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by bo...@apache.org on 2010/01/16 18:10:56 UTC

svn commit: r899994 - in /myfaces/tobago/trunk/example: portlet/src/main/java/org/apache/myfaces/tobago/example/portlet/User.java seam/src/main/java/org/apache/myfaces/tobago/example/seam/AuthenticationManager.java

Author: bommel
Date: Sat Jan 16 17:10:56 2010
New Revision: 899994

URL: http://svn.apache.org/viewvc?rev=899994&view=rev
Log:
checkstyle

Modified:
    myfaces/tobago/trunk/example/portlet/src/main/java/org/apache/myfaces/tobago/example/portlet/User.java
    myfaces/tobago/trunk/example/seam/src/main/java/org/apache/myfaces/tobago/example/seam/AuthenticationManager.java

Modified: myfaces/tobago/trunk/example/portlet/src/main/java/org/apache/myfaces/tobago/example/portlet/User.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/example/portlet/src/main/java/org/apache/myfaces/tobago/example/portlet/User.java?rev=899994&r1=899993&r2=899994&view=diff
==============================================================================
--- myfaces/tobago/trunk/example/portlet/src/main/java/org/apache/myfaces/tobago/example/portlet/User.java (original)
+++ myfaces/tobago/trunk/example/portlet/src/main/java/org/apache/myfaces/tobago/example/portlet/User.java Sat Jan 16 17:10:56 2010
@@ -18,7 +18,7 @@
  */
 
 public class User {
-  public String name;
+  private String name;
 
   public void setName(String name) {
     this.name = name;

Modified: myfaces/tobago/trunk/example/seam/src/main/java/org/apache/myfaces/tobago/example/seam/AuthenticationManager.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/example/seam/src/main/java/org/apache/myfaces/tobago/example/seam/AuthenticationManager.java?rev=899994&r1=899993&r2=899994&view=diff
==============================================================================
--- myfaces/tobago/trunk/example/seam/src/main/java/org/apache/myfaces/tobago/example/seam/AuthenticationManager.java (original)
+++ myfaces/tobago/trunk/example/seam/src/main/java/org/apache/myfaces/tobago/example/seam/AuthenticationManager.java Sat Jan 16 17:10:56 2010
@@ -27,10 +27,10 @@
 public class AuthenticationManager {
 
   @In
-  Identity identity;
+  private Identity identity;
 
   @In
-  Actor actor;
+  private Actor actor;
 
   public boolean authenticate() {