fix: Swipe()

This commit is contained in:
hyb1996
2017-07-31 13:02:15 +08:00
parent 63bc8c0e09
commit 6307d3aa96
9 changed files with 36 additions and 36 deletions

View File

@@ -60,7 +60,9 @@ public class VolatileBox<T> {
} catch (InterruptedException e) {
try {
throw exception.newInstance();
} catch (InstantiationException | IllegalAccessException e1) {
} catch (InstantiationException e1) {
throw new RuntimeException(e1);
} catch (IllegalAccessException e1) {
throw new RuntimeException(e1);
}
}