Index: build/android/pylib/instrumentation/instrumentation_test_instance.py |
diff --git a/build/android/pylib/instrumentation/instrumentation_test_instance.py b/build/android/pylib/instrumentation/instrumentation_test_instance.py |
index cb5d691f33fd4c07c189faf92606617e1a7e3827..a8770d0ff786c040947191b47efc3022f514802c 100644 |
--- a/build/android/pylib/instrumentation/instrumentation_test_instance.py |
+++ b/build/android/pylib/instrumentation/instrumentation_test_instance.py |
@@ -448,7 +448,6 @@ class InstrumentationTestInstance(test_instance.TestInstance): |
self._initializeTombstonesAttributes(args) |
self._gs_results_bucket = None |
- self._should_save_logcat = None |
self._initializeLogAttributes(args) |
self._edit_shared_prefs = [] |
@@ -629,7 +628,6 @@ class InstrumentationTestInstance(test_instance.TestInstance): |
def _initializeLogAttributes(self, args): |
self._gs_results_bucket = args.gs_results_bucket |
- self._should_save_logcat = bool(args.json_results_file) |
def _initializeEditPrefsAttributes(self, args): |
if not hasattr(args, 'shared_prefs_file') or not args.shared_prefs_file: |
@@ -690,10 +688,6 @@ class InstrumentationTestInstance(test_instance.TestInstance): |
def gs_results_bucket(self): |
return self._gs_results_bucket |
- @property |
- def should_save_logcat(self): |
- return self._should_save_logcat |
- |
@property |
def package_info(self): |
return self._package_info |