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:
parent
d7860d445d
commit
f342f27a0c
@ -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);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user