Skip to content

Commit 10aedd3

Browse files
committed
Removed unused import from thread.java, expanded javadoc package scan.
1 parent 5f36473 commit 10aedd3

2 files changed

Lines changed: 5 additions & 6 deletions

File tree

build.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -647,7 +647,7 @@ The readme text for the next release will be like:
647647
source="${jdk.source.version}"
648648
public="true"
649649
breakiterator="yes"
650-
packagenames="org.python.core, org.python.util, com.ziclix.python.sql, com.xhaus.modjy"
650+
packagenames="org.python.core.*, org.python.util.*, org.python.modules.*, com.ziclix.python.sql, com.xhaus.modjy"
651651
windowtitle="Jython API documentation"
652652
bottom="<a href='http://www.jython.org' target='_top'>Jython homepage</a>"
653653
>

src/org/python/modules/thread/thread.java

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
import org.python.core.PyInteger;
99
import org.python.core.PyObject;
1010
import org.python.core.PyString;
11-
import org.python.core.PyTableCode;
1211
import org.python.core.PyType;
1312
import org.python.core.PyTuple;
1413

@@ -64,10 +63,10 @@ public static FunctionThread _newFunctionThread(PyObject func, PyTuple args) {
6463
/**
6564
* Interrupts all running threads spawned by the thread module.
6665
*
67-
* This works in conjunction with:<ul>
68-
* <li>{@link PyTableCode#call(org.python.core.PyFrame, PyObject)}:
69-
* checks for the interrupted status of the current thread and raise
70-
* a SystemRestart exception if a interruption is detected.</li>
66+
* This works in conjunction with:<ul> <li>
67+
* {@link org.python.core.PyTableCode#call}: checks for the interrupted
68+
* status of the current thread and raise a SystemRestart exception if a
69+
* interruption is detected.</li>
7170
* <li>{@link FunctionThread#run()}: exits the current thread when a
7271
* SystemRestart exception is not caught.</li>
7372
*

0 commit comments

Comments
 (0)