(target_dir)
| 271 | |
| 272 | @staticmethod |
| 273 | def get_r_file_path(target_dir): |
| 274 | for dirpath, dirnames, files in os.walk(target_dir): |
| 275 | for fn in files: |
| 276 | if fn.endswith("R.java"): |
| 277 | return os.path.join(dirpath, fn) |
| 278 | return None |
| 279 | |
| 280 | |
| 281 | class QuickScanCommand(AbstractCommand): |
no outgoing calls
no test coverage detected