Good morning,
- I'm completing some Java homework.
- It's just a CLI tool, so I've just been using VSCode for my assignments (might be pertinent, idk)
- It's made up of two files, the main file
JoshuaLee.javaand a helper classCaesarCypher.java - They compile/run just fine on my windows machine. But this morning when I zipped the files up and sent them to my mac, I'm getting the following error.
TLDR: Somehow, Java was about to detect that I was using a class from another file on my windows machine, but when I moved my files to my Mac, I get the following error
Exception in thread "main" java.lang.Error: Unresolved compilation problems:
CaesarCipher cannot be resolved to a type
CaesarCipher cannot be resolved to a type
at HW3.JoshuaLee.main(JoshuaLee.java:20)