소스 검색

Testing pwd usn

Peter McCormick 6 년 전
부모
커밋
d755a646eb
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2
    0
      src/main/java/HamletParser.java

+ 2
- 0
src/main/java/HamletParser.java 파일 보기

@@ -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