Fix function definition.

This commit is contained in:
Ghislain MARY 2012-10-09 16:34:40 +02:00
parent 83e5533557
commit 48690086d5

View file

@ -155,7 +155,7 @@ class LinphoneCallImpl implements LinphoneCall {
return isAuthenticationTokenVerified(nativePtr); return isAuthenticationTokenVerified(nativePtr);
} }
private native boolean setAuthenticationTokenVerified(long nativePtr, boolean verified); private native void setAuthenticationTokenVerified(long nativePtr, boolean verified);
public void setAuthenticationTokenVerified(boolean verified){ public void setAuthenticationTokenVerified(boolean verified){
setAuthenticationTokenVerified(nativePtr, verified); setAuthenticationTokenVerified(nativePtr, verified);
} }