mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-02-07 14:18:25 +00:00
fix java 3 compilation issue
This commit is contained in:
parent
aadd9b0b02
commit
bd5b1ce9e4
7 changed files with 7 additions and 7 deletions
|
|
@ -24,7 +24,7 @@ import java.util.Vector;
|
|||
* Object representing a Call. calls are created using {@link LinphoneCore#invite(LinphoneAddress)} or passed to the application by listener {@link LinphoneCoreListener#callState(LinphoneCore, LinphoneCall, State, String)}
|
||||
*
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
|
||||
public interface LinphoneCall {
|
||||
/**
|
||||
* Linphone call states
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@ package org.linphone.core;
|
|||
import java.util.Vector;
|
||||
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
|
||||
public interface LinphoneCallLog {
|
||||
/**
|
||||
* Represents call status
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ import java.util.Vector;
|
|||
* Linphone core main object created by method {@link LinphoneCoreFactory#createLinphoneCore(LinphoneCoreListener, String, String, Object)}.
|
||||
*
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
|
||||
public interface LinphoneCore {
|
||||
/**
|
||||
* linphone core states
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ package org.linphone.core;
|
|||
|
||||
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
|
||||
abstract public class LinphoneCoreFactory {
|
||||
|
||||
private static String factoryName = "org.linphone.core.LinphoneCoreFactoryImpl";
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ import java.util.Vector;
|
|||
*
|
||||
*
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
|
||||
public interface LinphoneFriend {
|
||||
/**
|
||||
* Enum controlling behavior for incoming subscription request.
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ import java.util.Vector;
|
|||
* Enum describing remote friend status
|
||||
*
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
|
||||
public class OnlineStatus {
|
||||
|
||||
static private Vector values = new Vector();
|
||||
|
|
|
|||
|
|
@ -78,7 +78,7 @@ public final class VideoSize {
|
|||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
public String toString() {
|
||||
return "width = "+width + " height = " + height;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue