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 2020/06/03 13:22:52 UTC

[myfaces-tobago] branch master updated: code style: make final

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


The following commit(s) were added to refs/heads/master by this push:
     new c69cac0  code style: make final
c69cac0 is described below

commit c69cac0715cdbcd0c1ebb2a7d0fc897e5742b238
Author: Udo Schnurpfeil <ud...@irian.eu>
AuthorDate: Wed Jun 3 15:22:23 2020 +0200

    code style: make final
---
 .../apache/myfaces/tobago/example/demo/LoggingController.java  | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/tobago-example/tobago-example-demo/src/main/java/org/apache/myfaces/tobago/example/demo/LoggingController.java b/tobago-example/tobago-example-demo/src/main/java/org/apache/myfaces/tobago/example/demo/LoggingController.java
index 7b85f37..e922b9c 100644
--- a/tobago-example/tobago-example-demo/src/main/java/org/apache/myfaces/tobago/example/demo/LoggingController.java
+++ b/tobago-example/tobago-example-demo/src/main/java/org/apache/myfaces/tobago/example/demo/LoggingController.java
@@ -49,18 +49,18 @@ public class LoggingController {
   /**
    * should always be available, because it's part of Java since 1.4
    */
-  private LoggingInfo jul;
+  private final LoggingInfo jul;
 
   /**
    * should always be true, because it's used by Tobago
    */
-  private LoggingInfo slf4j;
+  private final LoggingInfo slf4j;
 
-  private LoggingInfo log4j;
+  private final LoggingInfo log4j;
 
-  private LoggingInfo log4j2;
+  private final LoggingInfo log4j2;
 
-  private LoggingInfo commonsLogging;
+  private final LoggingInfo commonsLogging;
 
   private String testCategory = LoggingController.class.getName();