You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2013/10/18 21:13:23 UTC

svn commit: r1533597 - /myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/java/org/apache/myfaces/tobago/example/test/TestExceptionHandlerFactory.java

Author: lofwyr
Date: Fri Oct 18 19:13:23 2013
New Revision: 1533597

URL: http://svn.apache.org/r1533597
Log:
checkstyle

Modified:
    myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/java/org/apache/myfaces/tobago/example/test/TestExceptionHandlerFactory.java

Modified: myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/java/org/apache/myfaces/tobago/example/test/TestExceptionHandlerFactory.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/java/org/apache/myfaces/tobago/example/test/TestExceptionHandlerFactory.java?rev=1533597&r1=1533596&r2=1533597&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/java/org/apache/myfaces/tobago/example/test/TestExceptionHandlerFactory.java (original)
+++ myfaces/tobago/trunk/tobago-example/tobago-example-test/src/main/java/org/apache/myfaces/tobago/example/test/TestExceptionHandlerFactory.java Fri Oct 18 19:13:23 2013
@@ -24,17 +24,17 @@ import javax.faces.context.ExceptionHand
 
 public class TestExceptionHandlerFactory extends ExceptionHandlerFactory {
 
-   private ExceptionHandlerFactory parent;
+  private ExceptionHandlerFactory parent;
 
-   public TestExceptionHandlerFactory( ExceptionHandlerFactory parent ) {
-      this.parent = parent;
-   }
+  public TestExceptionHandlerFactory(ExceptionHandlerFactory parent) {
+    this.parent = parent;
+  }
 
-   @Override
-   public ExceptionHandler getExceptionHandler() {
-      ExceptionHandler result = parent.getExceptionHandler();
-      result = new TestExceptionHandler(result);
-      return result;
-   }
+  @Override
+  public ExceptionHandler getExceptionHandler() {
+    ExceptionHandler result = parent.getExceptionHandler();
+    result = new TestExceptionHandler(result);
+    return result;
+  }
 
 }