Skip to content

Commit

Permalink
[WIP] refactor BottomBar
Browse files Browse the repository at this point in the history
  • Loading branch information
VishnuSanal committed Nov 12, 2023
1 parent 896c4e0 commit d10231e
Show file tree
Hide file tree
Showing 6 changed files with 171 additions and 164 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -586,6 +586,7 @@ public String getParent(Context context) {
*
* @deprecated use {@link #isDirectory(Context)} to handle content resolvers
*/
@Deprecated
public boolean isDirectory() {
boolean isDirectory;
switch (mode) {
Expand Down Expand Up @@ -686,6 +687,7 @@ public Boolean execute(@NonNull SFTPClient client) {
/**
* @deprecated use {@link #folderSize(Context)}
*/
@Deprecated
public long folderSize() {
long size = 0L;

Expand Down Expand Up @@ -1034,6 +1036,7 @@ public FTPFile[] executeWithFtpClient(@NonNull FTPClient ftpClient)
*
* @deprecated use forEachChildrenFile()
*/
@Deprecated
public ArrayList<HybridFileParcelable> listFiles(Context context, boolean isRoot) {
ArrayList<HybridFileParcelable> arrayList = new ArrayList<>();
forEachChildrenFile(context, isRoot, arrayList::add);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ public class CloudUtil {
/**
* @deprecated use getCloudFiles()
*/
@Deprecated
public static ArrayList<HybridFileParcelable> listFiles(
String path, CloudStorage cloudStorage, OpenMode openMode) throws CloudPluginException {
final ArrayList<HybridFileParcelable> baseFiles = new ArrayList<>();
Expand Down
Loading

0 comments on commit d10231e

Please sign in to comment.