The UrlRewrite object is-a RefCountObj, but this is a convenience to make it clear that we don't delete() these objects directly, but via the release() method only.
| 94 | // The UrlRewrite object is-a RefCountObj, but this is a convenience to make it clear that we |
| 95 | // don't delete() these objects directly, but via the release() method only. |
| 96 | UrlRewrite * |
| 97 | acquire() |
| 98 | { |
| 99 | this->refcount_inc(); |
| 100 | return this; |
| 101 | } |
| 102 | |
| 103 | void |
| 104 | release() |
nothing calls this directly
no test coverage detected