| Index: runtime/bin/platform.h
|
| diff --git a/runtime/bin/platform.h b/runtime/bin/platform.h
|
| index 3d3c0f3135c842a1b793b5017a0c556c94d1d69d..03c8369c53f23cbe1280131813b33e16bddba4e1 100644
|
| --- a/runtime/bin/platform.h
|
| +++ b/runtime/bin/platform.h
|
| @@ -56,14 +56,6 @@ class Platform {
|
| return resolved_executable_name_;
|
| }
|
|
|
| - // Stores and gets the package root.
|
| - static void SetPackageRoot(const char* package_root) {
|
| - package_root_ = package_root;
|
| - }
|
| - static const char* GetPackageRoot() {
|
| - return package_root_;
|
| - }
|
| -
|
| // Stores and gets the flags passed to the executable.
|
| static void SetExecutableArguments(int script_index, char** argv) {
|
| script_index_ = script_index;
|
| @@ -82,7 +74,6 @@ class Platform {
|
| // The path to the resolved executable.
|
| static const char* resolved_executable_name_;
|
|
|
| - static const char* package_root_;
|
| static int script_index_;
|
| static char** argv_; // VM flags are argv_[1 ... script_index_ - 1]
|
|
|
|
|