dfs: use ReftableConfig() constructor in DfsReftableDatabase

Signed-off-by: Han-Wen Nienhuys <hanwen@google.com>
Change-Id: I756f086fccaba8e77db516160c14708f97519f93
This commit is contained in:
Han-Wen Nienhuys 2019-07-24 17:22:43 +02:00
parent 434e6c732a
commit c78fbf23a5
1 changed files with 1 additions and 1 deletions

View File

@ -124,7 +124,7 @@ public BatchRefUpdate newBatchUpdate() {
* @return configuration to write new reftables with.
*/
public ReftableConfig getReftableConfig() {
return new ReftableConfig(getRepository().getConfig());
return new ReftableConfig(getRepository());
}
/**