From ad8449773577e61228ca1ada382699a0b8bfaa0a Mon Sep 17 00:00:00 2001 From: Andrew Hind Date: Fri, 5 Mar 2010 13:18:33 +0000 Subject: [PATCH] Build Fix: Collateral damage from Fix for ALF-1578: Custom property data fields not searchable due to lucene DEFAULT.ftsIndexerJobDetail exception - isIndexed needs a default is it is mandatory in the binding git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@19095 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261 --- source/java/org/alfresco/repo/dictionary/M2Property.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/java/org/alfresco/repo/dictionary/M2Property.java b/source/java/org/alfresco/repo/dictionary/M2Property.java index 1f46ad1c19..632b42ebfa 100644 --- a/source/java/org/alfresco/repo/dictionary/M2Property.java +++ b/source/java/org/alfresco/repo/dictionary/M2Property.java @@ -41,7 +41,7 @@ public class M2Property private boolean isMandatoryEnforced = false; private boolean isMultiValued = false; private String defaultValue = null; - private Boolean isIndexed = null; + private Boolean isIndexed = Boolean.TRUE; private Boolean isIndexedAtomically = null; private Boolean isStoredInIndex = null; private IndexTokenisationMode indexTokenisationMode = null;