fixed ByteArrayEndPoint dispatch

This commit is contained in:
Greg Wilkins 2014-12-24 12:50:19 +01:00
parent 26de8931a3
commit ee3481cb3f
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@ public class ByteArrayEndPoint extends AbstractEndPoint
/* ------------------------------------------------------------ */
protected void execute(Runnable task)
{
new Thread(task,"BAEPoint-"+Integer.toHexString(hashCode()));
new Thread(task,"BAEPoint-"+Integer.toHexString(hashCode())).start();
}
/* ------------------------------------------------------------ */