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/07 05:35:09 UTC

[struts-site] branch test-build updated (0ab15cd52 -> d7894c25b)

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


 discard 0ab15cd52 Uses pipeline to build staging version of the site
 discard a296dfd10 Uses spaces instead of tabs
     add e973036d1 Uses pipeline to build staging version of the site
     new d7894c25b Uses spaces instead of tabs

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (0ab15cd52)
            \
             N -- N -- N   refs/heads/test-build (d7894c25b)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

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.


Summary of changes:


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