I have to do a design for a program...
One of my instance variables is (since we are designing, we are being abstract)
private Set<Planet> planets;
Yet when I compile from the school computers, I got an error saying <indentifier> expected on that line. Yet it works fine from home. And I've done the same exact Set thing so many times... like my last assignment had private Set<Track> tracks; without error. WTF?? I imported java.util.* but that didn't help. Any ideas?
One of my instance variables is (since we are designing, we are being abstract)
private Set<Planet> planets;
Yet when I compile from the school computers, I got an error saying <indentifier> expected on that line. Yet it works fine from home. And I've done the same exact Set thing so many times... like my last assignment had private Set<Track> tracks; without error. WTF?? I imported java.util.* but that didn't help. Any ideas?