Author: mvitenkov
Date: 2009-07-16 04:17:06 -0400 (Thu, 16 Jul 2009)
New Revision: 14935
Modified:
branches/community/3.3.X/test-applications/jsp/src/main/java/tree/Bean.java
Log:
remove carch clause.
Modified: branches/community/3.3.X/test-applications/jsp/src/main/java/tree/Bean.java
===================================================================
--- branches/community/3.3.X/test-applications/jsp/src/main/java/tree/Bean.java 2009-07-15
18:35:24 UTC (rev 14934)
+++ branches/community/3.3.X/test-applications/jsp/src/main/java/tree/Bean.java 2009-07-16
08:17:06 UTC (rev 14935)
@@ -209,12 +209,7 @@
public String expand() {
if (expandPath != null && expandPath.length() != 0) {
- try {
- tree.queueNodeExpand(new ListRowKey(null, expandPath));
- } catch (IOException e) {
-
- e.printStackTrace();
- }
+ tree.queueNodeExpand(new ListRowKey(null, expandPath));
}
return null;
@@ -242,12 +237,7 @@
}
public String expandAll() {
- try {
- this.tree.queueExpandAll();
- } catch (IOException e) {
-
- e.printStackTrace();
- }
+ this.tree.queueExpandAll();
return null;
}
@@ -314,11 +304,7 @@
public String expandNode() {
String pathToExpand = getPathToExpand();
if (pathToExpand != null && pathToExpand.trim().length() != 0) {
- try {
- ((UITree) getTree()).queueNodeExpand(new ListRowKey(null, pathToExpand));
- } catch (IOException e) {
- throw new FacesException(e);
- }
+ ((UITree) getTree()).queueNodeExpand(new ListRowKey(null, pathToExpand));
}
return null;