From 7b555931f11b658312e64e704bf86054570c7bba Mon Sep 17 00:00:00 2001 From: Alan Davis Date: Sat, 31 Jan 2015 09:48:05 +0000 Subject: [PATCH] =?UTF-8?q?Merged=20HEAD-BUG-FIX=20(5.1/Cloud)=20to=20HEAD?= =?UTF-8?q?=20(5.0/Cloud)=20=20=20=2087706:=20Merged=20V4.2-BUG-FIX=20(4.2?= =?UTF-8?q?.4)=20to=20HEAD-BUG-FIX=20(5.0/Cloud)=20=20=20=20=20=20=2087369?= =?UTF-8?q?:=20MNT-12196=20:=20Exception=20generated=20in=20=E2=80=9CAcces?= =?UTF-8?q?sAuditor=E2=80=9D=20when=20length=20of=20custom=20property=20st?= =?UTF-8?q?ring=20in=20Javascript=20is=20bigger=20than=201024=20in=20Postg?= =?UTF-8?q?res=20database=20=20=20=20=20=20=20=20=20=20-=20Fixed=20build?= =?UTF-8?q?=20failure=20with=20JBPMWorkflowRestApiTest?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@94545 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261 --- source/java/org/alfresco/repo/audit/AuditComponentImpl.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/java/org/alfresco/repo/audit/AuditComponentImpl.java b/source/java/org/alfresco/repo/audit/AuditComponentImpl.java index 1758a8701b..85e034d3db 100644 --- a/source/java/org/alfresco/repo/audit/AuditComponentImpl.java +++ b/source/java/org/alfresco/repo/audit/AuditComponentImpl.java @@ -496,10 +496,10 @@ public class AuditComponentImpl implements AuditComponent if (values instanceof Map) { // trim string audited value - Map map = ((Map) values); - for (Map.Entry entry : map.entrySet()) + Map map = ((Map) values); + for (Map.Entry entry : map.entrySet()) { - Serializable auditValue = entry.getValue(); + Object auditValue = entry.getValue(); // Trim strings if (auditValue == null) {