()
| 102 | } |
| 103 | |
| 104 | func (o *Credential) Free() { |
| 105 | C.git_credential_free(o.ptr) |
| 106 | runtime.SetFinalizer(o, nil) |
| 107 | o.ptr = nil |
| 108 | } |
| 109 | |
| 110 | // GetUserpassPlaintext returns the plaintext username/password combination stored in the Cred. |
| 111 | func (o *Credential) GetUserpassPlaintext() (username, password string, err error) { |
nothing calls this directly
no outgoing calls
no test coverage detected