FileUtils.java: english error on comment

This commit is contained in:
Gabriel 2023-12-24 13:25:52 -04:00
parent d7036fc4e7
commit 0ab7bf3b17

View file

@ -131,7 +131,7 @@ public class FileUtils {
} }
/** /**
* When call ContentProvider.openFileDescriptor() android open a file descriptor * When call ContentProvider.openFileDescriptor() android opens a file descriptor
* on app process in /proc/self/fd/[file descriptor id] this is a link to real file path * on app process in /proc/self/fd/[file descriptor id] this is a link to real file path
* can use File.getCanonicalPath() for get a link origin, but in some android version * can use File.getCanonicalPath() for get a link origin, but in some android version
* need use Os.readlink(path) to get a real path. * need use Os.readlink(path) to get a real path.