From 66daf6fe8e1fbd8297c8c0e44905e72aba0d5974 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jindra=20Pet=F8=EDk?= Date: Wed, 5 Jun 2013 21:43:23 +0200 Subject: [PATCH] logging fix --- trunk/src/com/jpexs/decompiler/flash/graph/Graph.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/trunk/src/com/jpexs/decompiler/flash/graph/Graph.java b/trunk/src/com/jpexs/decompiler/flash/graph/Graph.java index e5aeb9bbb6..609a07b605 100644 --- a/trunk/src/com/jpexs/decompiler/flash/graph/Graph.java +++ b/trunk/src/com/jpexs/decompiler/flash/graph/Graph.java @@ -584,9 +584,8 @@ protected List printGraph(List visited, List output.add(new ScriptEndItem()); } } catch (Exception ex) { - //Logger.getLogger(Graph.class.getName()).log(Level.SEVERE, "error during printgraph", ex); - throw ex; - //return ret; + Logger.getLogger(Graph.class.getName()).log(Level.SEVERE, "error during printgraph", ex); + return ret; } } if (part.nextParts.size() == 2) {