[idea] Minor: don’t throw from LightAnnotation

This commit is contained in:
Sebastian Zarnekow 2015-04-27 18:11:29 +02:00
parent 8798c561ff
commit 20fbbfaaf7

View file

@ -41,7 +41,7 @@ class OperationCanceledManager {
throw t;
}
val opCanceledException = getPlatformOperationCanceledException(t);
if (opCanceledException != null)
if (opCanceledException !== null)
throw new OperationCanceledError(opCanceledException);
}