Sho SHIMIZU
Committed by Gerrit Code Review

Correct indent

2 spaces and 4 spaces were mixed up, then changes to 4 spaces.

Change-Id: I4e41189a97604a75e783d3b948d2693c257a21f4
...@@ -31,12 +31,14 @@ public interface DatabaseProxy<K, V> { ...@@ -31,12 +31,14 @@ public interface DatabaseProxy<K, V> {
31 31
32 /** 32 /**
33 * Returns a set of all tables names. 33 * Returns a set of all tables names.
34 + *
34 * @return A completable future to be completed with the result once complete. 35 * @return A completable future to be completed with the result once complete.
35 */ 36 */
36 CompletableFuture<Set<String>> tableNames(); 37 CompletableFuture<Set<String>> tableNames();
37 38
38 /** 39 /**
39 * Returns a mapping from counter name to next value. 40 * Returns a mapping from counter name to next value.
41 + *
40 * @return A completable future to be completed with the result once complete. 42 * @return A completable future to be completed with the result once complete.
41 */ 43 */
42 CompletableFuture<Map<String, Long>> counters(); 44 CompletableFuture<Map<String, Long>> counters();
......