mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-26 12:00:45 +00:00
Fix missing javadoc parameters, throw tags,...
This commit is contained in:
@@ -141,7 +141,7 @@ public class GraphPart implements Serializable {
|
||||
* @param throwStates Throw states
|
||||
* @param useThrow Use throw
|
||||
* @return True if this part leads to the other part
|
||||
* @throws InterruptedException
|
||||
* @throws InterruptedException On interrupt
|
||||
*/
|
||||
private boolean leadsTo(BaseLocalData localData, Graph gr, GraphSource code, GraphPart prev, GraphPart part, HashSet<GraphPart> visited, List<Loop> loops, List<ThrowState> throwStates, boolean useThrow) throws InterruptedException {
|
||||
if (Thread.currentThread().isInterrupted()) {
|
||||
@@ -223,7 +223,7 @@ public class GraphPart implements Serializable {
|
||||
* @param throwStates Throw states
|
||||
* @param useThrow Use throw
|
||||
* @return True if this part leads to the other part
|
||||
* @throws InterruptedException
|
||||
* @throws InterruptedException On interrupt
|
||||
*/
|
||||
public boolean leadsTo(BaseLocalData localData, Graph gr, GraphSource code, GraphPart part, List<Loop> loops, List<ThrowState> throwStates, boolean useThrow) throws InterruptedException {
|
||||
for (Loop l : loops) {
|
||||
|
||||
Reference in New Issue
Block a user