Skip to content

Commit

Permalink
logging fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jindrapetrik committed Jun 5, 2013
1 parent 448699d commit 66daf6f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions trunk/src/com/jpexs/decompiler/flash/graph/Graph.java
Original file line number Diff line number Diff line change
Expand Up @@ -584,9 +584,8 @@ protected List<GraphTargetItem> printGraph(List<GraphPart> visited, List<Object>
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) {
Expand Down

0 comments on commit 66daf6f

Please sign in to comment.