From 9d865454aaf0ea41927332768e55b5b2f56e2533 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Thu, 11 Apr 2024 08:33:55 -0400 Subject: [PATCH] gitc: delete a few more dead references Change-Id: I1da6f2ee799c735a63ac3ca6e5abd1211af10433 Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/419217 Reviewed-by: Josip Sokcevic Tested-by: Mike Frysinger Commit-Queue: Mike Frysinger --- manifest_xml.py | 6 ------ project.py | 2 -- 2 files changed, 8 deletions(-) diff --git a/manifest_xml.py b/manifest_xml.py index 4f752122..b26b0cac 100644 --- a/manifest_xml.py +++ b/manifest_xml.py @@ -435,11 +435,6 @@ class XmlManifest: self.parent_groups = parent_groups self.default_groups = default_groups - if outer_client and self.isGitcClient: - raise ManifestParseError( - "Multi-manifest is incompatible with `gitc-init`" - ) - if submanifest_path and not outer_client: # If passing a submanifest_path, there must be an outer_client. raise ManifestParseError(f"Bad call to {self.__class__.__name__}") @@ -2290,7 +2285,6 @@ class RepoClient(XmlManifest): submanifest_path: The submanifest root relative to the repo root. **kwargs: Additional keyword arguments, passed to XmlManifest. """ - self.isGitcClient = False submanifest_path = submanifest_path or "" if submanifest_path: self._CheckLocalPath(submanifest_path) diff --git a/project.py b/project.py index 0e601112..a8503a3a 100644 --- a/project.py +++ b/project.py @@ -1462,8 +1462,6 @@ class Project: self._InitHooks() def _CopyAndLinkFiles(self): - if self.client.isGitcClient: - return for copyfile in self.copyfiles: copyfile._Copy() for linkfile in self.linkfiles: