fix runnable.run() method call the Thread.start() method instead

This commit is contained in:
matsutani 2016-05-09 19:50:46 +09:00
parent 6f891998f9
commit 2069b7d540

View file

@ -120,7 +120,8 @@ public class FessMailDeliveryDepartmentCreator {
asyncManager.async(new ConcurrentAsyncCall() {
@Override
public void callback() {
runnable.run();
Thread thrd = new Thread(runnable);
thrd.start();
}
@Override