removed weird error handling code

This commit is contained in:
joss 2025-06-14 23:59:10 +02:00
parent cce901b51c
commit 30fad90c87

View file

@ -86,7 +86,7 @@ public class TreeView implements HttpHandler {
objPaths = Arrays.stream(uids).map(uid -> uid.split("/")).toArray(size -> new String[size][]);
response = Defaults.HTMLHEADER + "<h1>Beleg - Objekt&uuml;bersicht</h1><ul>";
try { response += makeObjectTree(objPaths); } catch(Exception e) { e.printStackTrace(); }
response += makeObjectTree(objPaths);
response += Defaults.HTMLFOOTER;
os = t.getResponseBody();