mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-01 10:55:12 +00:00
try to improve try..catch vs loops
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
package com.jpexs.decompiler.graph;
|
||||
|
||||
import java.util.HashSet;
|
||||
import java.util.Set;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author JPEXS
|
||||
*/
|
||||
public class ThrowState {
|
||||
public int exceptionId;
|
||||
public int state;
|
||||
|
||||
public Set<GraphPart> throwingParts = new HashSet<>();
|
||||
public GraphPart targetPart;
|
||||
}
|
||||
Reference in New Issue
Block a user