We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d1034ed + 494edb4 commit 0abfb74Copy full SHA for 0abfb74
src/main/java/rx/internal/util/unsafe/UnsafeAccess.java
@@ -41,7 +41,7 @@ private UnsafeAccess() {
41
Field field = Unsafe.class.getDeclaredField("theUnsafe");
42
field.setAccessible(true);
43
u = (Unsafe) field.get(null);
44
- } catch (Exception e) {
+ } catch (Throwable e) {
45
// do nothing, hasUnsafe() will return false
46
}
47
UNSAFE = u;
0 commit comments