forked from TrueCloudLab/certificates
Standardize linting file and fix or ignore lots of linting errors
This commit is contained in:
parent
99299faeeb
commit
33458c88aa
1 changed files with 2 additions and 4 deletions
|
@ -38,10 +38,8 @@ type Claimer struct {
|
|||
// NewClaimer initializes a new claimer with the given claims.
|
||||
func NewClaimer(claims *Claims, global Claims) (*Claimer, error) {
|
||||
c := &Claimer{global: global, claims: claims}
|
||||
if err := c.Validate(); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return c, nil
|
||||
err := c.Validate()
|
||||
return c, err
|
||||
}
|
||||
|
||||
// Claims returns the merge of the inner and global claims.
|
||||
|
|
Loading…
Reference in a new issue