| 78 | template <typename T> class ScopedJavaLocalRef : public JavaRef<T> { |
| 79 | public: |
| 80 | ScopedJavaLocalRef() : env_(nullptr) {} |
| 81 | |
| 82 | // Non-explicit copy constructor, to allow ScopedJavaLocalRef to be returned |
| 83 | // by value as this is the normal usage pattern. |
nothing calls this directly
no test coverage detected