()
| 101 | } |
| 102 | |
| 103 | func (li *lazyIdentity) IsProtected() (bool, error) { |
| 104 | id, err := li.load() |
| 105 | if err != nil { |
| 106 | return false, err |
| 107 | } |
| 108 | return id.IsProtected(), nil |
| 109 | } |
| 110 | |
| 111 | var _ IdentityWrapper = &loadedIdentity{} |
| 112 |
nothing calls this directly
no test coverage detected