File tree Expand file tree Collapse file tree 1 file changed +2
-6
lines changed
firebase-crashlytics/src/main/java/com/google/firebase/crashlytics/internal/persistence Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -101,16 +101,12 @@ static boolean recursiveDelete(File fileOrDirectory) {
101
101
return fileOrDirectory .delete ();
102
102
}
103
103
104
- /**
105
- * @return internal File used by Crashlytics, that is not specific to a session
106
- */
104
+ /** @return internal File used by Crashlytics, that is not specific to a session */
107
105
public File getCommonFile (String filename ) {
108
106
return new File (rootDir , filename );
109
107
}
110
108
111
- /**
112
- * @return all common (non session specific) files matching the given filter.
113
- */
109
+ /** @return all common (non session specific) files matching the given filter. */
114
110
public List <File > getCommonFiles (FilenameFilter filter ) {
115
111
return safeArrayToList (rootDir .listFiles (filter ));
116
112
}
You can’t perform that action at this time.
0 commit comments