Don't sync, its an optimization - right?

This commit is contained in:
md_5 2013-03-13 18:08:43 +11:00
parent 1763dd3078
commit bc0a076e4b

View File

@ -4,13 +4,13 @@ public class CancelSendSignal extends Error
{
@Override
public synchronized Throwable initCause(Throwable cause)
public Throwable initCause(Throwable cause)
{
return this;
}
@Override
public synchronized Throwable fillInStackTrace()
public Throwable fillInStackTrace()
{
return this;
}