Removed unused endElement method from com.arsdigita.cms.contenttypes.XMLContentTypeHandler

git-svn-id: https://svn.libreccm.org/ccm/trunk@3492 8810af33-2d31-482b-a856-94f89814c4df
master
jensp 2015-06-19 18:09:23 +00:00
parent a1944b95cb
commit e83147bbfe
1 changed files with 0 additions and 16 deletions

View File

@ -139,20 +139,4 @@ public class XMLContentTypeHandler extends DefaultHandler {
} }
} }
public void endElement(String uri, String name,
String qName, Attributes atts) {
if (name.equals("content-type")) {
// reset the helper
if (create) {
m_contentType.save();
m_authoringKit.save();
m_type.saveType();
} else {
m_contentType.delete();
m_authoringKit.delete();
m_type.deleteType();
}
m_type = null;
}
}
} }