(self, clientFile)
| 2836 | self.mappings.append(depot_side) |
| 2837 | |
| 2838 | def convert_client_path(self, clientFile): |
| 2839 | # chop off //client/ part to make it relative |
| 2840 | if not decode_path(clientFile).startswith(self.client_prefix): |
| 2841 | die("No prefix '%s' on clientFile '%s'" % |
| 2842 | (self.client_prefix, clientFile)) |
| 2843 | return clientFile[len(self.client_prefix):] |
| 2844 | |
| 2845 | def update_client_spec_path_cache(self, files): |
| 2846 | """Caching file paths by "p4 where" batch query.""" |
no test coverage detected