Skip to content

Commit 7c96c55

Browse files
committed
Add JavaDoc to LocalWorklistTask
1 parent 9d9427e commit 7c96c55

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

soot-infoflow/src/soot/jimple/infoflow/solver/fastSolver/LocalWorklistTask.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
import java.util.ArrayDeque;
44

5+
/**
6+
* This special task may run multiple tasks on the same thread if they are
7+
* scheduled using {@link #scheduleLocal(Runnable)}
8+
*
9+
* @author Marc Miltenberger
10+
*/
511
public abstract class LocalWorklistTask implements Runnable {
612
private ArrayDeque<Runnable> localTaskList = new ArrayDeque<>();
713
private static final ThreadLocal<LocalWorklistTask> TASKS = new ThreadLocal<>();

0 commit comments

Comments
 (0)