You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by lu...@apache.org on 2022/04/06 12:10:31 UTC

[struts-site] branch test-build created (now a296dfd10)

This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a change to branch test-build
in repository https://gitbox.apache.org/repos/asf/struts-site.git


      at a296dfd10 Uses spaces instead of tabs

This branch includes the following new commits:

     new a296dfd10 Uses spaces instead of tabs

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[struts-site] 01/01: Uses spaces instead of tabs

Posted by lu...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a commit to branch test-build
in repository https://gitbox.apache.org/repos/asf/struts-site.git

commit a296dfd1031a17e7a905e649bfcb7b2d72e22e64
Author: Lukasz Lenart <lu...@apache.org>
AuthorDate: Wed Apr 6 14:10:24 2022 +0200

    Uses spaces instead of tabs
---
 source/core-developers/using-visitor-field-validator.md | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/source/core-developers/using-visitor-field-validator.md b/source/core-developers/using-visitor-field-validator.md
index f09703733..a167f86d7 100644
--- a/source/core-developers/using-visitor-field-validator.md
+++ b/source/core-developers/using-visitor-field-validator.md
@@ -38,15 +38,15 @@ Create the action class.
 ```java
 public class VisitorValidatorsExampleAction extends AbstractValidationActionSupport {
 
-	private User user;
+    private User user;
 
-	public User getUser() {
-		return user;
-	}
+    public User getUser() {
+        return user;
+    }
 
-	public void setUser(User user) {
-		this.user = user;
-	}
+    public void setUser(User user) {
+        this.user = user;
+    }
 }
 ```