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 2018/04/12 12:11:45 UTC

[myfaces-tobago] 01/03: checkstyle

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

lofwyr pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/myfaces-tobago.git

commit 383e25f4e020f5b3696cc0e100c33d075376289f
Author: Udo Schnurpfeil <lo...@apache.org>
AuthorDate: Thu Apr 12 10:55:45 2018 +0200

    checkstyle
---
 .../main/java/org/apache/myfaces/tobago/example/demo/ApiController.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tobago-example/tobago-example-demo/src/main/java/org/apache/myfaces/tobago/example/demo/ApiController.java b/tobago-example/tobago-example-demo/src/main/java/org/apache/myfaces/tobago/example/demo/ApiController.java
index 0657ed3..23309ab 100644
--- a/tobago-example/tobago-example-demo/src/main/java/org/apache/myfaces/tobago/example/demo/ApiController.java
+++ b/tobago-example/tobago-example-demo/src/main/java/org/apache/myfaces/tobago/example/demo/ApiController.java
@@ -45,7 +45,7 @@ public class ApiController implements Serializable {
   private void init() {
     releases = new ArrayList<>();
     for (Release release : Release.values()) {
-      if (! release.isUnreleased() && (!onlyCurrent || release.isCurrent())) {
+      if (!release.isUnreleased() && (!onlyCurrent || release.isCurrent())) {
         releases.add(release);
       }
     }

-- 
To stop receiving notification emails like this one, please contact
lofwyr@apache.org.