Using Eclipse, if I have an extra semicolon on an
import line (not the last
import line), I see a syntax error in the IDE. However, this compiles fine outside of the IDE (Maven in this case).
Example:
import java.util.ArrayList;; //notice extra semicolon
import java.util.List;
Does anyone else see this behavior? Why is this showing as a
…