| Index: runtime/bin/file_fuchsia.cc
|
| diff --git a/runtime/bin/file_fuchsia.cc b/runtime/bin/file_fuchsia.cc
|
| index da22733f19209a28611546c45f91d0994120cf62..ae4233334ccd1e4d05d140d7912ceab84d6c40b6 100644
|
| --- a/runtime/bin/file_fuchsia.cc
|
| +++ b/runtime/bin/file_fuchsia.cc
|
| @@ -164,7 +164,7 @@ File* File::FileOpenW(const wchar_t* system_name, FileOpenMode mode) {
|
| }
|
|
|
|
|
| -File* File::ScopedOpen(const char* name, FileOpenMode mode) {
|
| +File* File::Open(const char* name, FileOpenMode mode) {
|
| // Report errors for non-regular files.
|
| struct stat st;
|
| if (NO_RETRY_EXPECTED(stat(name, &st)) == 0) {
|
| @@ -201,12 +201,6 @@ File* File::ScopedOpen(const char* name, FileOpenMode mode) {
|
| }
|
|
|
|
|
| -File* File::Open(const char* path, FileOpenMode mode) {
|
| - // ScopedOpen doesn't actually need a scope.
|
| - return ScopedOpen(path, mode);
|
| -}
|
| -
|
| -
|
| File* File::OpenStdio(int fd) {
|
| return ((fd < 0) || (2 < fd)) ? NULL : new File(new FileHandle(fd));
|
| }
|
|
|