Skip to content

Commit

Permalink
Merge pull request #97 from messai-engineering/YugaV68
Browse files Browse the repository at this point in the history
YugaV68 || OOM fix
  • Loading branch information
sonali-anand-tc authored Aug 1, 2024
2 parents 51aa287 + f771a19 commit 1d59160
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>in.messai</groupId>
<artifactId>yuga</artifactId>
<version>1.0.67</version>
<version>1.0.68</version>

<name>Yuga Date Parser</name>
<description>
Expand Down Expand Up @@ -188,7 +188,7 @@
<developerConnection>scm:git:[email protected]:messai-engineering/Yuga.git</developerConnection>
<url>https://github.com/messai-engineering/Yuga</url>

<tag>yuga-1.0.67</tag>
<tag>yuga-1.0.68</tag>

</scm>
</project>
2 changes: 1 addition & 1 deletion src/main/java/com/twelfthmile/yuga/utils/Util.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public static boolean isDateOperator(char c) {
}

public static boolean isDelimiter(char c) {
return c == Constants.CH_SPACE || c == Constants.CH_FSTP || c == Constants.CH_COMA || c == Constants.CH_RBKT;
return c == Constants.CH_SPACE || c == Constants.CH_FSTP || c == Constants.CH_COMA || c == Constants.CH_RBKT || c == Constants.CH_NLINE;
}

public static boolean meridienTimeAhead(String str, int i) {
Expand Down

0 comments on commit 1d59160

Please sign in to comment.