[#48] client: Remove ctx == nil checks

Much less useful after we made context to be passed explicitly.

Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
This commit is contained in:
Evgenii Stratonikov 2023-04-13 08:19:28 +03:00
parent 55b06cd764
commit 1bfa9ecdb0
17 changed files with 9 additions and 71 deletions

View file

@ -72,10 +72,7 @@ type ResContainerDelete struct {
// - global (see Client docs).
func (c *Client) ContainerDelete(ctx context.Context, prm PrmContainerDelete) (*ResContainerDelete, error) {
// check parameters
switch {
case ctx == nil:
return nil, errorMissingContext
case !prm.idSet:
if !prm.idSet {
return nil, errorMissingContainer
}