blob: 5f83b21e61fca2fa29dbd064b89de5c4a139b714 [file] [log] [blame]
package com.siyeh.igtest.threading;
public class ThreadPriorityInspection
{
public void foo()
{
final Thread thread = new Thread();
thread.setPriority(3);
thread.setName("bar");
}
}