From c29b51f179f1b0cf7720c77b76c30b47e84dbae3 Mon Sep 17 00:00:00 2001 From: Tom Page Date: Fri, 19 Jun 2015 10:16:06 +0000 Subject: [PATCH] RM-2319 Declare parameter key as "final". This is needed to compile in java 7, but not java 8. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/modules/recordsmanagement/HEAD@106532 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261 --- .../classification/ClassificationServiceBootstrap.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rm-server/source/java/org/alfresco/module/org_alfresco_module_rm/classification/ClassificationServiceBootstrap.java b/rm-server/source/java/org/alfresco/module/org_alfresco_module_rm/classification/ClassificationServiceBootstrap.java index b9a91fef3e..b02e13a6cf 100644 --- a/rm-server/source/java/org/alfresco/module/org_alfresco_module_rm/classification/ClassificationServiceBootstrap.java +++ b/rm-server/source/java/org/alfresco/module/org_alfresco_module_rm/classification/ClassificationServiceBootstrap.java @@ -129,7 +129,7 @@ public class ClassificationServiceBootstrap extends AbstractLifecycleBean implem * Gets an ordered list of some attribute persisted in the system. * @return the list of values if they have been persisted, else {@code null}. */ - private List getPersistedValues(Serializable[] key) + private List getPersistedValues(final Serializable[] key) { return authenticationUtil.runAsSystem(new RunAsWork>() {