I've gotten my friend's project folder that a bunch of .java and .class files so that I could help him with his project. We are using git as our way of version control.
In the directory, I typed "javac *.java" but unfortunately I got a bunch of class reference errors, so I tried compiling them individually.
"javac A.java", which extends B, raised an error saying that it couldn't find symbol: class B. So I did "javac B.java" which did just fine, and then tried javac A.java again. The same error popped up saying that it couldn't find symbol: class B.
Does anyone know what's wrong, and what I should do?