Skip to content

Commit

Permalink
Remove deprecated FS#setAsyncFileStoreAttributes method
Browse files Browse the repository at this point in the history
Change-Id: Iea9f61fd65772ab247b382c93035e3c9974705aa
  • Loading branch information
msohn committed Sep 3, 2024
1 parent 0b531cd commit 2a10b41
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions org.eclipse.jgit/src/org/eclipse/jgit/util/FS.java
Original file line number Diff line number Diff line change
Expand Up @@ -897,21 +897,6 @@ public static FS detect() {
return detect(null);
}

/**
* Whether FileStore attributes should be determined asynchronously
*
* @param asynch
* whether FileStore attributes should be determined
* asynchronously. If false access to cached attributes may block
* for some seconds for the first call per FileStore
* @since 5.1.9
* @deprecated Use {@link FileStoreAttributes#setBackground} instead
*/
@Deprecated
public static void setAsyncFileStoreAttributes(boolean asynch) {
FileStoreAttributes.setBackground(asynch);
}

/**
* Auto-detect the appropriate file system abstraction, taking into account
* the presence of a Cygwin installation on the system. Using jgit in
Expand Down

0 comments on commit 2a10b41

Please sign in to comment.