Add a line break when renaming downloads

After renaming an old file but before downloading the new version,
add a line break to separate the "Renaming" and "Downloading" lines.

Change-Id: Ida8295c08619291d72e6c967d91485fca93bb86f
This commit is contained in:
Doug Kelly
2015-10-14 11:17:33 -05:00
committed by David Pursehouse
parent ab16c46053
commit a11d9c2dfa

View File

@@ -228,7 +228,7 @@ class LibraryDownloader {
for (Path p : paths) {
String old = p.getFileName().toString();
String bak = "." + old + ".backup";
ui.message("Renaming %s to %s", old, bak);
ui.message("Renaming %s to %s\n", old, bak);
try {
Files.move(p, p.resolveSibling(bak));
} catch (IOException e) {