Android: fix warnings about Class raw type usage

Using Class<?> fixes the warning.

Change-Id: Ia65aa78509c41d041970631dc21c8dd72459e674
Reviewed-by: Juha Vuolle <juha.vuolle@qt.io>
(cherry picked from commit f342f27a0cc6c82f9503c0002b6fd32cb3ada3c3)
Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
(cherry picked from commit aae66d751896a0015e50f685af4f173626c0e397)
This commit is contained in:
Assam Boudjelthia 2024-12-31 15:12:28 +02:00 committed by Qt Cherry-pick Bot
parent d1d90da815
commit 1ad5263e1b

View File

@ -5,6 +5,6 @@ package org.qtproject.qt.android;
class BackendRegister
{
static native boolean isNull();
static native void registerBackend(Class interfaceType, Object interfaceObject);
static native void unregisterBackend(Class interfaceType);
static native void registerBackend(Class<?> interfaceType, Object interfaceObject);
static native void unregisterBackend(Class<?> interfaceType);
}