Author: scabanovich
Date: 2009-08-11 13:20:50 -0400 (Tue, 11 Aug 2009)
New Revision: 17053
Modified:
trunk/common/plugins/org.jboss.tools.common/src/org/jboss/tools/common/xml/DtdResolver.java
Log:
https://jira.jboss.org/jira/browse/JBIDE-4686
Modified:
trunk/common/plugins/org.jboss.tools.common/src/org/jboss/tools/common/xml/DtdResolver.java
===================================================================
---
trunk/common/plugins/org.jboss.tools.common/src/org/jboss/tools/common/xml/DtdResolver.java 2009-08-11
17:20:48 UTC (rev 17052)
+++
trunk/common/plugins/org.jboss.tools.common/src/org/jboss/tools/common/xml/DtdResolver.java 2009-08-11
17:20:50 UTC (rev 17053)
@@ -98,6 +98,8 @@
resourceType = "DTD"; //$NON-NLS-1$
} else if(systemId.toLowerCase().endsWith(".xsd")) { //$NON-NLS-1$
resourceType = "XSD"; //$NON-NLS-1$
+ } else if(systemId.toLowerCase().endsWith(".ent")) { //$NON-NLS-1$
+ resourceType = "ENT"; //$NON-NLS-1$
}
}
InputStream is = null;