Java/String: inherit the super class constructor

This commit is contained in:
Max Kellermann
2021-03-28 13:24:00 +02:00
committed by Max Kellermann
parent f58c14a74a
commit 2d95ac2e94
2 changed files with 3 additions and 2 deletions

View File

@@ -44,8 +44,7 @@ namespace Java {
*/
class String : public LocalRef<jstring> {
public:
String(JNIEnv *env, jstring value) noexcept
:LocalRef<jstring>(env, value) {}
using LocalRef::LocalRef;
String(JNIEnv *_env, const char *_value) noexcept
:LocalRef<jstring>(_env, _env->NewStringUTF(_value)) {}