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:32 UTC

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

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;
+    }
 }
 ```