diff options
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/transport/UploadPack.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/transport/UploadPack.java b/org.eclipse.jgit/src/org/eclipse/jgit/transport/UploadPack.java index de7be6dec5..04532fd90f 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/transport/UploadPack.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/transport/UploadPack.java @@ -1072,7 +1072,7 @@ public class UploadPack { verifyClientShallow(); } if (depth != 0 || shallowSince != 0 || shallowExcludeRefs != null) { - shallowCommits = new ArrayList<ObjectId>(); + shallowCommits = new ArrayList<>(); processShallow(shallowCommits, unshallowCommits, false); } if (!clientShallowCommits.isEmpty()) |