fix runnable.run() method call the Thread.start() method instead
This commit is contained in:
parent
6f891998f9
commit
2069b7d540
1 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue