Remove unused function introduced in update.go

This commit is contained in:
DarkAEther 2020-08-17 17:51:32 +05:30
parent a2b05a8b52
commit 279c48d812

View file

@ -162,13 +162,4 @@ func checkDependencies(containers []container.Container) {
}
}
}
}
func Find(links []string, target string) bool {
for i:=0; i < len(links); i++{
if links[i] == target{
return true
}
}
return false
}
}