| Index: build/android/pylib/system_properties.py
|
| diff --git a/build/android/pylib/system_properties.py b/build/android/pylib/system_properties.py
|
| index 3f16f86e77b8f19862b37187686353d8912d43ee..ce5d617d73b4e4c6bb23ee570d3bf89e40d5fe1d 100644
|
| --- a/build/android/pylib/system_properties.py
|
| +++ b/build/android/pylib/system_properties.py
|
| @@ -29,8 +29,7 @@ class SystemProperties(dict):
|
| # TODO(tonyg): This can fail with no root. Verify that it succeeds.
|
| self._adb.SendShellCommand('setprop %s "%s"' % (key, value), retry_count=3)
|
|
|
| - @staticmethod
|
| - def _IsStatic(key):
|
| + def _IsStatic(self, key):
|
| # TODO(tonyg): This list is conservative and could be expanded as needed.
|
| return (key.startswith('ro.boot.') or
|
| key.startswith('ro.build.') or
|
|
|