Skip to content

Commit

Permalink
YugaV1.62 || Test Case update
Browse files Browse the repository at this point in the history
  • Loading branch information
saumittra-saxena-tc committed Jan 17, 2024
1 parent 8fe3abe commit a333856
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.61</version>
<version>1.0.62</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.61</tag>
<tag>yuga-1.0.62</tag>

</scm>
</project>
2 changes: 1 addition & 1 deletion src/main/java/com/twelfthmile/yuga/Yuga.java
Original file line number Diff line number Diff line change
Expand Up @@ -1371,7 +1371,7 @@ else if (map.getType().equals(Constants.TY_NUMRANGE)) {

private static void setIfNumRange(String str, int i, FsaContextMap map) {
// TCANDROID-52501 - introduce bound checks
if((str.isEmpty() || str==null) || str.length()<=i)
if((str.isEmpty() || str==null) || str.length()<i)
return;
String trimmed = str.substring(0, i).trim();
// 18-22.
Expand Down

0 comments on commit a333856

Please sign in to comment.