rucaja
rucaja copied to clipboard
Reduce the usage of `unwrap()`
We use unwrap() in some places where the result should "in theory" always be existant.
We should handle those unlikely cases. Consider:
- bubble
Nones up in functions that return anOption. Consider using?forOptions in Rust 1.22. - panic if JVM methods fail when we can not handle it otherwise