Explorar el Código

Testing pwd usn

Peter McCormick hace 6 años
padre
commit
d755a646eb
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  1. 2
    0
      src/main/java/HamletParser.java

+ 2
- 0
src/main/java/HamletParser.java Ver fichero

@@ -56,6 +56,7 @@ public class HamletParser {
56 56
         Matcher hamletUpperMatcher = hamletUpperPattern.matcher(string1);
57 57
         String string2 = hamletUpperMatcher.replaceAll("LEON");
58 58
         return string2;
59
+
59 60
     }
60 61
 
61 62
     public String changeHoratioToTariq(String string) {
@@ -69,6 +70,7 @@ public class HamletParser {
69 70
         Matcher horatioUpperMatcher = horatioUpperPattern.matcher(string1);
70 71
         String string2 = horatioUpperMatcher.replaceAll("TARIQ");
71 72
         return string2;
73
+
72 74
     }
73 75
 
74 76