Removed an unused dictionary service template

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@11859 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Saravanan Sellathurai
2008-11-11 17:16:39 +00:00
parent b82201a6bb
commit dde3f451b6

View File

@@ -1,18 +0,0 @@
<#macro classDefJSON classdefs>
<#escape x as jsonUtils.encodeJSONString(x)>
{
<#if classdefs.name?exists>
"name" : "${classdefs.name}",
</#if>
<#if classdefs.title?exists>
"title" : "${classdefs.title}",
</#if>
<#if classdefs.description?exists>
"description" : "${classdefs.description}",
</#if>
<#if classdefs.isAspect?exists>
"isAspect" : "it does exist"
</#if>
}
</#escape>
</#macro>