]> source.dussan.org Git - jgit.git/commitdiff
GC: Update TODO comments 78/143578/4
authorDavid Pursehouse <david.pursehouse@gmail.com>
Sat, 8 Jun 2019 06:48:57 +0000 (15:48 +0900)
committerDavid Pursehouse <david.pursehouse@gmail.com>
Tue, 11 Jun 2019 01:37:18 +0000 (10:37 +0900)
The TODO comments say "in 5.0", but 5.0 was already released without
resolving them. Remove "in 5.0" on the assumption that the mentioned
improvements still need to be done at some point.

Change-Id: I3eb429803e2266de3fc490e1f3912991c08aa1ad
Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/GC.java

index a791ac78e63fdd9f5e09ef3e0ea030dd0c5bbf42..70a3d5ea5c9a10bdab289d251c906e1136ffcb11 100644 (file)
@@ -243,7 +243,7 @@ public class GC {
         *             If the configuration parameter "gc.pruneexpire" couldn't be
         *             parsed
         */
-       // TODO(ms): in 5.0 change signature and return Future<Collection<PackFile>>
+       // TODO(ms): change signature and return Future<Collection<PackFile>>
        @SuppressWarnings("FutureReturnValueIgnored")
        public Collection<PackFile> gc() throws IOException, ParseException {
                if (!background) {
@@ -280,7 +280,7 @@ public class GC {
                        }
                        return Collections.emptyList();
                };
-               // TODO(ms): in 5.0 change signature and return the Future
+               // TODO(ms): change signature and return the Future
                executor().submit(gcTask);
                return Collections.emptyList();
        }