Format stuff

This commit is contained in:
carbotaniuman 2020-08-03 09:57:21 -05:00
parent 2e14430d3d
commit 4a2e55270f
2 changed files with 4 additions and 4 deletions

View file

@ -254,7 +254,7 @@ public final class DiskLruCache implements Closeable {
try {
readJournalLine(reader.readLine());
lineCount++;
} catch(UnexpectedJournalLineException ignored) {
} catch (UnexpectedJournalLineException ignored) {
// just continue and hope nothing breaks
} catch (EOFException e) {
break;

View file

@ -3,7 +3,7 @@ package mdnet.cache;
import java.io.IOException;
public class UnexpectedJournalLineException extends IOException {
public UnexpectedJournalLineException(String unexpectedLine) {
super("unexpected journal line: " + unexpectedLine);
}
public UnexpectedJournalLineException(String unexpectedLine) {
super("unexpected journal line: " + unexpectedLine);
}
}