Small code cleanups.
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Thu, 5 Apr 2018 20:42:20 +0000 (22:42 +0200)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Thu, 5 Apr 2018 20:42:20 +0000 (22:42 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
exo4/Main.java
exo5/Main.java

index cd7afc54357296ac0655a09dfc6c2bdc843532cc..7c17dd83f3bc15c9221e9b8aaddec6e58bb83775 100644 (file)
@@ -1,5 +1,4 @@
 import java.util.LinkedList;
-//import java.lang.reflect.Method;
 import java.lang.annotation.Annotation;
 
 class Main {
index 1ec751215c7c5bd4710ca47cefe6a69f39c6a297..c5b80c42e573d08078519a99ffb74f5df89fa749 100644 (file)
@@ -38,9 +38,9 @@ class Main {
         }
 
         System.out.println("SortedMap content after the word \"milieu\":");
-        SortedMap<String, Integer> stm = tm.tailMap("milieu");
-        for (String wordCursor : stm.keySet()) {
-            System.out.println("Word \"" + wordCursor + "\" occured " + stm.get(wordCursor) + " times");
+        SortedMap<String, Integer> sm = tm.tailMap("milieu");
+        for (String wordCursor : sm.keySet()) {
+            System.out.println("Word \"" + wordCursor + "\" occured " + sm.get(wordCursor) + " times");
         }
     }
 }