From d410f1bb456160d5c4e78f93b0546f35bef3b453 Mon Sep 17 00:00:00 2001 From: nebula1989 <55000248+nebula1989@users.noreply.github.com> Date: Thu, 13 Feb 2020 12:22:46 -0500 Subject: [PATCH] Update Exercise_05_49.java the last brace for the class was missing --- Exercise_05/Exercise_05_49/Exercise_05_49.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Exercise_05/Exercise_05_49/Exercise_05_49.java b/Exercise_05/Exercise_05_49/Exercise_05_49.java index 096d8291..d20abe14 100644 --- a/Exercise_05/Exercise_05_49/Exercise_05_49.java +++ b/Exercise_05/Exercise_05_49/Exercise_05_49.java @@ -35,4 +35,5 @@ public static void main(String[] args) { System.out.println("The number of vowels is " + vowels); System.out.println("The number of consonants is " + consonants); } -} \ No newline at end of file + } +}