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:24:06 UTC

[myfaces-tobago] branch tobago-4.x updated: code style: make final

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

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


The following commit(s) were added to refs/heads/tobago-4.x by this push:
     new 3ff7da5  code style: make final
3ff7da5 is described below

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

    code style: make final
    
    (cherry picked from commit c69cac0715cdbcd0c1ebb2a7d0fc897e5742b238)
---
 .../myfaces/tobago/example/demo/UniversalLoggingInfo.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/UniversalLoggingInfo.java b/tobago-example/tobago-example-demo/src/main/java/org/apache/myfaces/tobago/example/demo/UniversalLoggingInfo.java
index 414b850..55a4f7d 100644
--- a/tobago-example/tobago-example-demo/src/main/java/org/apache/myfaces/tobago/example/demo/UniversalLoggingInfo.java
+++ b/tobago-example/tobago-example-demo/src/main/java/org/apache/myfaces/tobago/example/demo/UniversalLoggingInfo.java
@@ -43,18 +43,18 @@ public class UniversalLoggingInfo {
   /**
    * 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 = UniversalLoggingInfo.class.getName();