Fix missing javadoc parameters, throw tags,...

This commit is contained in:
Jindra Petřík
2024-08-08 22:00:27 +02:00
parent cf06781fdf
commit acc5f94889
179 changed files with 1021 additions and 1477 deletions

View File

@@ -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();