Address JetBrains warnings

This commit is contained in:
2026-02-14 16:04:18 -05:00
parent 20d8e141eb
commit a091cd4952
3 changed files with 6 additions and 3 deletions
+1 -2
View File
@@ -12,9 +12,8 @@ var keyBytesProvider = func(sshKeyPath *string) ([]byte, error) {
return nil, errors.New("unable to read private key: " + *sshKeyPath)
}
return key, nil
} else {
return nil, errors.New("unable to identify private key location (nil config)")
}
return nil, errors.New("unable to identify private key location (nil config)")
}
// GetBytes returns the SSH private key bytes.