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) {
1193
1193
" ()Landroid/hardware/HardwareBuffer;" );
1194
1194
1195
1195
if (g_image_get_hardware_buffer_method == nullptr ) {
1196
- FML_LOG (WARNING) << " Could not locate getHardwareBuffer on "
1197
- " android.media.Image" ;
1198
1196
// Continue on as this method may not exist at API <= 29.
1199
1197
fml::jni::ClearException (env);
1200
1198
}
@@ -1215,14 +1213,10 @@ bool PlatformViewAndroid::Register(JNIEnv* env) {
1215
1213
g_hardware_buffer_close_method =
1216
1214
env->GetMethodID (g_hardware_buffer_class->obj (), " close" , " ()V" );
1217
1215
if (g_hardware_buffer_close_method == nullptr ) {
1218
- FML_LOG (WARNING)
1219
- << " Could not locate close on android.hardware.HardwareBuffer" ;
1220
1216
// Continue on as this class may not exist at API <= 26.
1221
1217
fml::jni::ClearException (env);
1222
1218
}
1223
1219
} else {
1224
- FML_LOG (WARNING)
1225
- << " Could not locate android.hardware.HardwareBuffer class" ;
1226
1220
// Continue on as this class may not exist at API <= 26.
1227
1221
fml::jni::ClearException (env);
1228
1222
}
You can’t perform that action at this time.
0 commit comments