You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1. Mostly added @Suppress("UNCHECKED_CAST") to different casts as they will never fail.
(They will never fail as the stack, on which it is based on, has a specific structure and it is being built by the same function that uses it in the background. This means that even though it wasn't explicitly stated (for the compiler) that this cast can be done, it is being implied by the structure of the stack itself)
2. Changing the variable type of the stack from a var to a val (and with that a constant) as the reference that it contains is never being changed.
3. Fix a spelling mistake from "Expeced" to "Expected".
0 commit comments