You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by mg...@apache.org on 2017/03/20 20:58:47 UTC

[04/48] wicket git commit: Change Indent

Change Indent


Project: http://git-wip-us.apache.org/repos/asf/wicket/repo
Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/1975bf85
Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/1975bf85
Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/1975bf85

Branch: refs/heads/master
Commit: 1975bf852e6692ce1c8e3a75dac4c9aca95f87ac
Parents: c39fbdc
Author: kensakurai <sa...@gmail.com>
Authored: Sat Feb 18 19:59:39 2017 +0900
Committer: kensakurai <sa...@gmail.com>
Committed: Sat Feb 18 19:59:39 2017 +0900

----------------------------------------------------------------------
 .../stateless/StatelessCheckFailureException.java    | 15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/1975bf85/wicket-devutils/src/main/java/org/apache/wicket/devutils/stateless/StatelessCheckFailureException.java
----------------------------------------------------------------------
diff --git a/wicket-devutils/src/main/java/org/apache/wicket/devutils/stateless/StatelessCheckFailureException.java b/wicket-devutils/src/main/java/org/apache/wicket/devutils/stateless/StatelessCheckFailureException.java
index 84def0a..1ba2eca 100644
--- a/wicket-devutils/src/main/java/org/apache/wicket/devutils/stateless/StatelessCheckFailureException.java
+++ b/wicket-devutils/src/main/java/org/apache/wicket/devutils/stateless/StatelessCheckFailureException.java
@@ -31,9 +31,9 @@ import org.apache.wicket.WicketRuntimeException;
  */
 public class StatelessCheckFailureException  extends WicketRuntimeException
 {
-    private static final long serialVersionUID = 1L;
+	private static final long serialVersionUID = 1L;
 
-    private Component component;
+	private Component component;
 
 	/**
 	 * Construct.
@@ -41,16 +41,17 @@ public class StatelessCheckFailureException  extends WicketRuntimeException
 	 * @param reason Reason for exception occurrence
 	 */
 	public StatelessCheckFailureException(Component component, String reason)
-    {
-        super("'" + component + "' claims to be stateless but isn't." + reason);
-        this.component = component;
-    }
+	{
+		super("'" + component + "' claims to be stateless but isn't." + reason);
+		this.component = component;
+	}
 
 	/**
 	 * Get check failure component
 	 * @return Failure component
 	 */
-	public Component getComponent() {
+	public Component getComponent()
+	{
 		return component;
 	}
 }