This repository was archived by the owner on Feb 25, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +0
-6
lines changed
Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -1193,8 +1193,6 @@ bool PlatformViewAndroid::Register(JNIEnv* env) {
11931193 " ()Landroid/hardware/HardwareBuffer;" );
11941194
11951195 if (g_image_get_hardware_buffer_method == nullptr ) {
1196- FML_LOG (WARNING) << " Could not locate getHardwareBuffer on "
1197- " android.media.Image" ;
11981196 // Continue on as this method may not exist at API <= 29.
11991197 fml::jni::ClearException (env);
12001198 }
@@ -1215,14 +1213,10 @@ bool PlatformViewAndroid::Register(JNIEnv* env) {
12151213 g_hardware_buffer_close_method =
12161214 env->GetMethodID (g_hardware_buffer_class->obj (), " close" , " ()V" );
12171215 if (g_hardware_buffer_close_method == nullptr ) {
1218- FML_LOG (WARNING)
1219- << " Could not locate close on android.hardware.HardwareBuffer" ;
12201216 // Continue on as this class may not exist at API <= 26.
12211217 fml::jni::ClearException (env);
12221218 }
12231219 } else {
1224- FML_LOG (WARNING)
1225- << " Could not locate android.hardware.HardwareBuffer class" ;
12261220 // Continue on as this class may not exist at API <= 26.
12271221 fml::jni::ClearException (env);
12281222 }
You can’t perform that action at this time.
0 commit comments