Fixed: Standardize spaces

This commit is contained in:
Kyle Clemens 2015-10-01 17:31:15 -04:00
parent 88f50eb9fd
commit 0c30963c23

View file

@ -16,10 +16,10 @@ public class Potato implements Tuber {
public static void main(String[] args) { public static void main(String[] args) {
final Potato potato = new Potato(); final Potato potato = new Potato();
try { try {
potato.prepare(); potato.prepare();
System.out.println("Of course potato is prepared and delicious."); System.out.println("Of course potato is prepared and delicious.");
} catch (NotDeliciousException e) { } catch (NotDeliciousException e) {
System.err.println("Fatal error! How could potato not be delicious?"); System.err.println("Fatal error! How could potato not be delicious?");
} }
} }