Questions tagged [unreachable-code]

Unreachable code is part of the source code of a program which can never be executed because there exists no control flow path to the code from the rest of the program.

181 questions
-6
votes
2 answers

Unreachable Code Error In Java

I'm working on a gradebook program in Java and I ran into a problem with "unreachable code" If somebody could tell me what is causing this issue I'd appreciate it. static ArrayList assignments = new ArrayList(); static…
1 2 3
…
12
13