Skip to content

Commit

Permalink
LPD-35725 Rename
Browse files Browse the repository at this point in the history
  • Loading branch information
brianchandotcom committed Sep 26, 2024
1 parent f4a752e commit 4f9f511
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ public void generateReport(UpgradeRecorder upgradeRecorder) {
_log.info("Starting upgrade report generation");
}

_executionDate = _getExecutionDate();
_executionDateString = _getExecutionDateString();
_executionTime =
(DBUpgrader.getUpgradeTime() / Time.SECOND) + " seconds";
_rootDir = _getRootDir();
Expand Down Expand Up @@ -136,7 +136,7 @@ private int _getBuildNumber() {
return 0;
}

private String _getExecutionDate() {
private String _getExecutionDateString() {
SimpleDateFormat simpleDateFormat = new SimpleDateFormat(
"EEE, MMM dd, yyyy hh:mm:ss z");

Expand Down Expand Up @@ -211,7 +211,7 @@ private Map<String, Object> _getReportData(
Set<String> propertiesFilePathStrings = _getPropertiesFilePathStrings();

return LinkedHashMapBuilder.<String, Object>put(
"execution.date", _executionDate
"execution.date", _executionDateString
).put(
"execution.time", _executionTime
).put(
Expand Down Expand Up @@ -543,7 +543,7 @@ private Map<String, Object> _getReportDataDiagnostics(
UpgradeRecorder upgradeRecorder) {

return LinkedHashMapBuilder.<String, Object>put(
"execution.date", _executionDate
"execution.date", _executionDateString
).put(
"execution.time", _executionTime
).put(
Expand Down Expand Up @@ -975,7 +975,7 @@ else if (value instanceof Map<?, ?>) {

private double _dlSize;
private final Thread _dlSizeThread = new DLSizeThread();
private String _executionDate;
private String _executionDateString;
private String _executionTime;
private final int _initialBuildNumber;
private Map<String, Integer> _initialTableCounts;
Expand Down

0 comments on commit 4f9f511

Please sign in to comment.