Skip to content

Commit

Permalink
LPS-202104 Rename
Browse files Browse the repository at this point in the history
  • Loading branch information
brianchandotcom committed Dec 4, 2023
1 parent 39d597c commit faacc2f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ private UnicodeProperties _replaceVariables(
UnicodeProperties transformedUnicodeProperties = new UnicodeProperties(
true);

String modifiedTimestamp = String.valueOf(
String modifiedTime = String.valueOf(
(modifiedDate == null) ? 0 : modifiedDate.getTime());

for (Map.Entry<String, String> entry : unicodeProperties.entrySet()) {
Expand All @@ -318,7 +318,7 @@ private UnicodeProperties _replaceVariables(

if (cetImplFactory.isURLCETPropertyName(name)) {
value = value.replaceAll(
Pattern.quote("${modifiedTimestamp}"), modifiedTimestamp);
Pattern.quote("${modifiedTime}"), modifiedTime);
}

transformedUnicodeProperties.put(name, value);
Expand Down

0 comments on commit faacc2f

Please sign in to comment.