]> source.dussan.org Git - jgit.git/commitdiff
Fix indentation in ConvertRefStorage 36/154536/1
authorMatthias Sohn <matthias.sohn@sap.com>
Sat, 14 Dec 2019 21:05:16 +0000 (22:05 +0100)
committerMatthias Sohn <matthias.sohn@sap.com>
Sat, 14 Dec 2019 21:05:16 +0000 (22:05 +0100)
Change-Id: Icd007b035e728f641c70cda68befa11a6197003f
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/ConvertRefStorage.java

index 2fd689b00470b37abe0e04c2992f64ac66d7bc30..a59b8852ed59591198b885ef5ca77c4e980ab918 100644 (file)
@@ -46,15 +46,15 @@ package org.eclipse.jgit.pgm;
 import org.eclipse.jgit.internal.storage.file.FileRepository;
 import org.kohsuke.args4j.Option;
 
-@Command(common=true, usage="usage_convertRefStorage")
+@Command(common = true, usage = "usage_convertRefStorage")
 class ConvertRefStorage extends TextBuiltin {
 
-    @Option(name = "--format", usage = "usage_convertRefStorageFormat")
+       @Option(name = "--format", usage = "usage_convertRefStorageFormat")
        private String format = "reftable"; //$NON-NLS-1$
 
-    /** {@inheritDoc} */
-    @Override
-    protected void run() throws Exception {
-        ((FileRepository) db).convertRefStorage(format, true, true);
-    }
+       /** {@inheritDoc} */
+       @Override
+       protected void run() throws Exception {
+               ((FileRepository) db).convertRefStorage(format, true, true);
+       }
 }