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
{{ message }}
This repository has been archived by the owner on Oct 11, 2022. It is now read-only.
Throughout the project there are multiple instances of code branches, usually catch blocks, which are commented as unreachable. For enhanced robustness, throw new AssertionError("Unreachable code"); should be placed in such places to help identify logic errors.
Code locations of interest are currently marked with comments such as "Impossible" or "X can't happen". A thorough search should be conducted in the entire codebase for these occurrences.
Throughout the project there are multiple instances of code branches, usually
catch
blocks, which are commented as unreachable. For enhanced robustness,throw new AssertionError("Unreachable code");
should be placed in such places to help identify logic errors.Code locations of interest are currently marked with comments such as "Impossible" or "X can't happen". A thorough search should be conducted in the entire codebase for these occurrences.
Example
The text was updated successfully, but these errors were encountered: