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
This commit is contained in:
Tom Page
2015-06-19 10:16:06 +00:00
parent d32b7adf0d
commit c29b51f179

View File

@@ -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 <T> List<T> getPersistedValues(Serializable[] key)
private <T> List<T> getPersistedValues(final Serializable[] key)
{
return authenticationUtil.runAsSystem(new RunAsWork<List<T>>()
{