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 <sokcevic@google.com>
Tested-by: Mike Frysinger <vapier@google.com>
Commit-Queue: Mike Frysinger <vapier@google.com>
This commit is contained in:
Mike Frysinger 2024-04-11 08:33:55 -04:00 committed by LUCI
parent cbd78a9194
commit 9d865454aa
2 changed files with 0 additions and 8 deletions

View File

@ -435,11 +435,6 @@ class XmlManifest:
self.parent_groups = parent_groups self.parent_groups = parent_groups
self.default_groups = default_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 submanifest_path and not outer_client:
# If passing a submanifest_path, there must be an outer_client. # If passing a submanifest_path, there must be an outer_client.
raise ManifestParseError(f"Bad call to {self.__class__.__name__}") 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. submanifest_path: The submanifest root relative to the repo root.
**kwargs: Additional keyword arguments, passed to XmlManifest. **kwargs: Additional keyword arguments, passed to XmlManifest.
""" """
self.isGitcClient = False
submanifest_path = submanifest_path or "" submanifest_path = submanifest_path or ""
if submanifest_path: if submanifest_path:
self._CheckLocalPath(submanifest_path) self._CheckLocalPath(submanifest_path)

View File

@ -1462,8 +1462,6 @@ class Project:
self._InitHooks() self._InitHooks()
def _CopyAndLinkFiles(self): def _CopyAndLinkFiles(self):
if self.client.isGitcClient:
return
for copyfile in self.copyfiles: for copyfile in self.copyfiles:
copyfile._Copy() copyfile._Copy()
for linkfile in self.linkfiles: for linkfile in self.linkfiles: