ReflogReaderTest: Fix indentation

Change-Id: I981dc14065ce435034d2072cff77e7efaa2c5573
Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
This commit is contained in:
David Pursehouse 2018-03-05 16:33:42 +09:00
parent 5a1f8af589
commit c77e66dd1a
1 changed files with 14 additions and 14 deletions

View File

@ -270,19 +270,19 @@ public void testSpecificEntryNumber() throws Exception {
private void setupReflog(String logName, byte[] data) private void setupReflog(String logName, byte[] data)
throws FileNotFoundException, IOException { throws FileNotFoundException, IOException {
File logfile = new File(db.getDirectory(), logName); File logfile = new File(db.getDirectory(), logName);
if (!logfile.getParentFile().mkdirs() if (!logfile.getParentFile().mkdirs()
&& !logfile.getParentFile().isDirectory()) { && !logfile.getParentFile().isDirectory()) {
throw new IOException( throw new IOException(
"oops, cannot create the directory for the test reflog file" "oops, cannot create the directory for the test reflog file"
+ logfile); + logfile);
} }
FileOutputStream fileOutputStream = new FileOutputStream(logfile); FileOutputStream fileOutputStream = new FileOutputStream(logfile);
try { try {
fileOutputStream.write(data); fileOutputStream.write(data);
} finally { } finally {
fileOutputStream.close(); fileOutputStream.close();
} }
} }
} }