Skip to content

Commit f3d8985

Browse files
committed
supress unlikely target
1 parent 1430ff0 commit f3d8985

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

sources/net.sf.j2s.java.core/src/java/lang/Thread.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,8 @@ private void init(ThreadGroup g, Runnable target, String name,
379379
* @param acc the AccessControlContext to inherit, or
380380
* AccessController.getContext() if null
381381
*/
382-
private void init(ThreadGroup g, Runnable target, String name,
382+
@SuppressWarnings("unlikely-arg-type")
383+
private void init(ThreadGroup g, Runnable target, String name,
383384
long stackSize, Object acc) { // was access controller
384385
Thread parent = (秘thisThread == null ? null : 秘thisThread);
385386
// SecurityManager security = System.getSecurityManager();

0 commit comments

Comments
 (0)