You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by ah...@apache.org on 2018/01/23 10:57:41 UTC

[isis] 04/10: ISIS-1846 make constants final

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

ahuber pushed a commit to branch ISIS-1846_internal_utils
in repository https://gitbox.apache.org/repos/asf/isis.git

commit c09cffb7a4ce9b9a4690e7c931f4c0daef6c6e29
Author: Andi Huber <ah...@apache.org>
AuthorDate: Tue Jan 23 09:25:59 2018 +0100

    ISIS-1846 make constants final
---
 .../src/main/java/org/apache/isis/applib/internal/_Constants.java     | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/core/applib/src/main/java/org/apache/isis/applib/internal/_Constants.java b/core/applib/src/main/java/org/apache/isis/applib/internal/_Constants.java
index d4a71f1..90bb428 100644
--- a/core/applib/src/main/java/org/apache/isis/applib/internal/_Constants.java
+++ b/core/applib/src/main/java/org/apache/isis/applib/internal/_Constants.java
@@ -36,12 +36,12 @@ public final class _Constants {
 	/**
 	 * Convenient e.g. for reflective invocation
 	 */
-	public static Object[] emptyObjects = new Object[0];
+	public static final Object[] emptyObjects = new Object[0];
 
 	/**
 	 * Convenient e.g. for reflective invocation
 	 */
 	@SuppressWarnings("rawtypes")
-	public static Class[] emptyClasses = new Class[0];
+	public static final Class[] emptyClasses = new Class[0];
 	
 }

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