Author: dgolovin
Date: 2012-04-06 16:59:31 -0400 (Fri, 06 Apr 2012)
New Revision: 40097
Modified:
trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/template/VpeAbstractBodyTemplate.java
Log:
removed empty catch block for XPCOMException and verified the JBIDE-1568 works as expected
without catching the exception
Modified:
trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/template/VpeAbstractBodyTemplate.java
===================================================================
---
trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/template/VpeAbstractBodyTemplate.java 2012-04-06
20:28:00 UTC (rev 40096)
+++
trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/template/VpeAbstractBodyTemplate.java 2012-04-06
20:59:31 UTC (rev 40097)
@@ -73,12 +73,7 @@
*/
div.setAttribute(targetAttributeName, attributeValue);
}
- //FIX FOR JBIDE-1568, added by Max Areshkau
- try {
- body.setAttribute(targetAttributeName, attributeValue);
- } catch(XPCOMException ex ) {
- // Ignored
- }
+ body.setAttribute(targetAttributeName, attributeValue);
}
}
}
Show replies by date