1
0
mirror of https://github.com/osmarks/mycorrhiza.git synced 2025-11-29 13:25:14 +00:00

Rename MediaHypha to NonEmptyHypha

This commit is contained in:
Timur Ismagilov
2022-02-04 22:06:37 +05:00
committed by Timur Ismagilov
parent 002e9f7a93
commit 6fc5cf994e
18 changed files with 86 additions and 86 deletions

View File

@@ -20,7 +20,7 @@ func findSiblings(hyphaName string) []*sibling {
siblingsMap = make(map[string]bool)
siblingCheck = func(h hyphae.Hypher) hyphae.CheckResult {
switch {
case h.CanonicalName() == hyphaName, // MediaHypha is no sibling of itself
case h.CanonicalName() == hyphaName, // NonEmptyHypha is no sibling of itself
h.CanonicalName() == parentHyphaName: // Parent hypha is no sibling of its child
return hyphae.CheckContinue
}