Author: vrubezhny
Date: 2007-09-11 13:11:55 -0400 (Tue, 11 Sep 2007)
New Revision: 3569
Modified:
trunk/jst/plugins/org.jboss.tools.jst.web.tiles/src/org/jboss/tools/jst/web/tiles/model/FileTilesRecognizer.java
Log:
http://jira.jboss.org/jira/browse/JBIDE-894 Clean out jst component
Code clean up is performed
Modified:
trunk/jst/plugins/org.jboss.tools.jst.web.tiles/src/org/jboss/tools/jst/web/tiles/model/FileTilesRecognizer.java
===================================================================
---
trunk/jst/plugins/org.jboss.tools.jst.web.tiles/src/org/jboss/tools/jst/web/tiles/model/FileTilesRecognizer.java 2007-09-11
17:11:46 UTC (rev 3568)
+++
trunk/jst/plugins/org.jboss.tools.jst.web.tiles/src/org/jboss/tools/jst/web/tiles/model/FileTilesRecognizer.java 2007-09-11
17:11:55 UTC (rev 3569)
@@ -10,6 +10,7 @@
******************************************************************************/
package org.jboss.tools.jst.web.tiles.model;
+import org.jboss.tools.common.log.LogHelper;
import org.jboss.tools.common.model.loaders.*;
import org.jboss.tools.common.xml.XMLEntityResolver;
@@ -17,7 +18,9 @@
static {
try {
XMLEntityResolver.registerPublicEntity(TilesConstants.DOC_PUBLICID,
FileTilesRecognizer.class, "/meta/tiles_config_1_1.dtd");
- } catch (Exception e) {}
+ } catch (Exception e) {
+ LogHelper.logError("org.jboss.tools.jst.web.tiles", e);
+ }
}
public String getEntityName(String ext, String body) {