posted 22 years ago
Your collegues maybe thinking about using assertions with java 1.4. To compile with assertions enabled use
javac -source 1.4 and to run with assertions enabled use java -ea . There are other ways of enabling assertions at runtime, but I do not list them to keep things simple.
-Barry