Index: build/android/pylib/system_properties.py |
diff --git a/build/android/pylib/system_properties.py b/build/android/pylib/system_properties.py |
index ce5d617d73b4e4c6bb23ee570d3bf89e40d5fe1d..3f16f86e77b8f19862b37187686353d8912d43ee 100644 |
--- a/build/android/pylib/system_properties.py |
+++ b/build/android/pylib/system_properties.py |
@@ -29,7 +29,8 @@ 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) |
- def _IsStatic(self, key): |
+ @staticmethod |
+ def _IsStatic(key): |
# TODO(tonyg): This list is conservative and could be expanded as needed. |
return (key.startswith('ro.boot.') or |
key.startswith('ro.build.') or |