()
| 114 | } |
| 115 | |
| 116 | func (p remotePath) StripShortcuts() remotePath { |
| 117 | p = p.Clean() |
| 118 | return newRemotePath(stripPathShortcuts(p.file)) |
| 119 | } |
| 120 | |
| 121 | func (p remotePath) StripSlashes() remotePath { |
| 122 | return newRemotePath(stripLeadingSlash(p.file)) |
nothing calls this directly
no test coverage detected