BranchApi: Add missing throws declaration on NotImplemented#reflog

Change-Id: I9d8d8324ce1b92a2b8f7080953469a992e68d630
This commit is contained in:
David Pursehouse 2018-08-22 15:40:44 +09:00
parent 7fea932270
commit 27757966a8

View File

@ -57,7 +57,7 @@ public interface BranchApi {
}
@Override
public List<ReflogEntryInfo> reflog() {
public List<ReflogEntryInfo> reflog() throws RestApiException {
throw new NotImplementedException();
}
}