Hot Fix
Fixed bug that prevented Java code from being compiled.
The Cause
This bug was caused by the Java compiler not cooperating with the Projects directory.
The solution
Instead of compiling with the path as an argument
$ java Projects/test.java
we had to change directories into the path and then compile
$ cd Projects && java test.java