comments: cleanup some leftover debug comments and such

This commit is contained in:
Seth Hoenig
2020-01-07 11:58:29 -06:00
parent e825a0f769
commit d24d470775
10 changed files with 23 additions and 18 deletions

View File

@@ -88,7 +88,7 @@ func (m *MockACLsAPI) RoleRead(roleID string, _ *api.QueryOptions) (*api.ACLRole
ID: ExamplePolicyID1,
Name: "example-policy-1",
}},
ServiceIdentities: nil, // would it ever make sense ?
ServiceIdentities: nil,
}, nil, nil
case ExampleRoleID2:
return &api.ACLRole{
@@ -104,9 +104,8 @@ func (m *MockACLsAPI) RoleRead(roleID string, _ *api.QueryOptions) (*api.ACLRole
return &api.ACLRole{
ID: ExampleRoleID3,
Name: "example-role-3",
Policies: nil, // todo
ServiceIdentities: nil, // todo
ModifyIndex: 0,
Policies: nil, // todo add more if needed
ServiceIdentities: nil, // todo add more if needed
}, nil, nil
default:
return nil, nil, nil