Android: fix warnings about Class raw type usage

Using Class<?> fixes the warning.

Pick-to: 6.9 6.8
Change-Id: Ia65aa78509c41d041970631dc21c8dd72459e674
Reviewed-by: Juha Vuolle <juha.vuolle@qt.io>
This commit is contained in:
Assam Boudjelthia 2024-12-31 15:12:28 +02:00
parent d7860d445d
commit f342f27a0c

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);
}