Skip to content

Commit 92831b1

Browse files
committed
Testing the basic post hoc FileProvider interface class III
1 parent aca4da1 commit 92831b1

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

AndroidFilePickerLightLibrary/src/main/java/com/maxieds/androidfilepickerlightlibrary/BasicFileProvider.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -868,14 +868,14 @@ private void initializeDefaults() {
868868
documentCursorEntry = null;
869869
}
870870

871-
DocumentPointer(FileChooserBuilder.BaseFolderPathType baseFolderType) {
871+
public DocumentPointer(FileChooserBuilder.BaseFolderPathType baseFolderType) {
872872
initializeDefaults();
873873
fpInst.resetBaseDirectory();
874874
isValid = fpInst.selectBaseDirectoryByType(baseFolderType);
875875
this.baseFolderType = baseFolderType;
876876
}
877877

878-
DocumentPointer(FileChooserBuilder.BaseFolderPathType baseFolderType, String relativeOffsetPath) {
878+
public DocumentPointer(FileChooserBuilder.BaseFolderPathType baseFolderType, String relativeOffsetPath) {
879879
initializeDefaults();
880880
fpInst.resetBaseDirectory();
881881
isValid = fpInst.selectBaseDirectoryByType(baseFolderType);
@@ -884,7 +884,7 @@ private void initializeDefaults() {
884884
this.relativeFolderPathOffset = relativeOffsetPath;
885885
}
886886

887-
DocumentPointer(String absInitFolderPath) {
887+
public DocumentPointer(String absInitFolderPath) {
888888
initializeDefaults();
889889
fpInst.resetBaseDirectory();
890890
isValid = fpInst.enterNextSubfolder(absInitFolderPath);

0 commit comments

Comments
 (0)