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 4f9f511 commit 86605db
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public void generateReport(UpgradeRecorder upgradeRecorder) {
}

_executionDateString = _getExecutionDateString();
_executionTime =
_executionTimeString =
(DBUpgrader.getUpgradeTime() / Time.SECOND) + " seconds";
_rootDir = _getRootDir();

Expand Down Expand Up @@ -213,7 +213,7 @@ private Map<String, Object> _getReportData(
return LinkedHashMapBuilder.<String, Object>put(
"execution.date", _executionDateString
).put(
"execution.time", _executionTime
"execution.time", _executionTimeString
).put(
"result", upgradeRecorder.getResult()
).put(
Expand Down Expand Up @@ -545,7 +545,7 @@ private Map<String, Object> _getReportDataDiagnostics(
return LinkedHashMapBuilder.<String, Object>put(
"execution.date", _executionDateString
).put(
"execution.time", _executionTime
"execution.time", _executionTimeString
).put(
"errors", _getMessagesPrinters(upgradeRecorder.getErrorMessages())
).put(
Expand Down Expand Up @@ -976,7 +976,7 @@ else if (value instanceof Map<?, ?>) {
private double _dlSize;
private final Thread _dlSizeThread = new DLSizeThread();
private String _executionDateString;
private String _executionTime;
private String _executionTimeString;
private final int _initialBuildNumber;
private Map<String, Integer> _initialTableCounts;
private String _rootDir;
Expand Down

0 comments on commit 86605db

Please sign in to comment.