| 96 | void operator=(const ScopedJavaLocalRef<T> &other) { this->Reset(other); } |
| 97 | |
| 98 | void Reset() { this->ResetLocalRef(env_); } |
| 99 | |
| 100 | template <typename U> void Reset(const ScopedJavaLocalRef<U> &other) { |
| 101 | // We can copy over env_ here as |other| instance must be from the same |
no test coverage detected