mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-17 14:21:54 +00:00
Fix missing javadoc parameters, throw tags,...
This commit is contained in:
@@ -202,7 +202,7 @@ public class DecompilerPool {
|
||||
* @param src ASM source
|
||||
* @param actions Actions
|
||||
* @return Highlighted text
|
||||
* @throws InterruptedException
|
||||
* @throws InterruptedException On interrupt
|
||||
*/
|
||||
public HighlightedText decompile(ASMSource src, ActionList actions) throws InterruptedException {
|
||||
Future<HighlightedText> future = submitTask(src, actions, null);
|
||||
@@ -234,7 +234,7 @@ public class DecompilerPool {
|
||||
* @param abcIndex ABC indexing
|
||||
* @param pack Script pack
|
||||
* @return Highlighted text
|
||||
* @throws InterruptedException
|
||||
* @throws InterruptedException On interrupt
|
||||
*/
|
||||
public HighlightedText decompile(AbcIndexing abcIndex, ScriptPack pack) throws InterruptedException {
|
||||
Future<HighlightedText> future = submitTask(abcIndex, pack, null);
|
||||
@@ -264,7 +264,7 @@ public class DecompilerPool {
|
||||
/**
|
||||
* Shuts down the pool.
|
||||
*
|
||||
* @throws InterruptedException
|
||||
* @throws InterruptedException On interrupt
|
||||
*/
|
||||
public void shutdown() throws InterruptedException {
|
||||
executor.shutdown();
|
||||
|
||||
Reference in New Issue
Block a user