Skip to content

Commit

Permalink
Remove deprecated Transport#getFilterBlobLimit methods
Browse files Browse the repository at this point in the history
Change-Id: Ia72cc228b0acaa8df8f405bd224916cc76eadd22
  • Loading branch information
msohn committed Sep 3, 2024
1 parent d672276 commit d64e092
Showing 1 changed file with 0 additions and 22 deletions.
22 changes: 0 additions & 22 deletions org.eclipse.jgit/src/org/eclipse/jgit/transport/Transport.java
Original file line number Diff line number Diff line change
Expand Up @@ -1120,28 +1120,6 @@ public void setRemoveDeletedRefs(boolean remove) {
removeDeletedRefs = remove;
}

/**
* @return the blob limit value set with {@link #setFilterBlobLimit} or
* {@link #setFilterSpec(FilterSpec)}, or -1 if no blob limit value
* was set
* @since 5.0
* @deprecated Use {@link #getFilterSpec()} instead
*/
@Deprecated
public final long getFilterBlobLimit() {
return filterSpec.getBlobLimit();
}

/**
* @param bytes exclude blobs of size greater than this
* @since 5.0
* @deprecated Use {@link #setFilterSpec(FilterSpec)} instead
*/
@Deprecated
public final void setFilterBlobLimit(long bytes) {
setFilterSpec(FilterSpec.withBlobLimit(bytes));
}

/**
* Get filter spec
*
Expand Down

0 comments on commit d64e092

Please sign in to comment.