Fix javadoc

This commit is contained in:
Erwan Croze 2017-03-30 16:58:26 +02:00
parent 548a81228f
commit 67b573161f
4 changed files with 3 additions and 5 deletions

View file

@ -248,7 +248,6 @@ public interface LinphoneChatMessage {
/**
* Get if the message was encrypted when transfered
* @param message LinphoneChatMessage obj
* @return whether the message was encrypted when transfered or not
*/
boolean isSecured();

View file

@ -155,7 +155,6 @@ public interface LinphoneChatRoom {
/**
* Return if lime is available in this room
* @param cr: chat room
* @return
*/
boolean islimeAvailable();

View file

@ -364,7 +364,7 @@ public interface LinphoneProxyConfig {
* refreshes are sent.
* However, linphone_core_set_network_reachable(lc,TRUE) will always request the proxy configs to refresh their registrations.
* The refreshing operations can be resumed with linphone_proxy_config_refresh_register().
* @param[in] cfg #LinphoneProxyConfig object.
* params cfg #LinphoneProxyConfig object.
**/
public void pauseRegister();
}

View file

@ -80,7 +80,7 @@ public class OpenH264DownloadHelper {
/**
* @param index of object in UserData list
* @constraints (index >= 0 && index < userData.size())
* constraints (index superior or egal to 0 and index inferior to userData.size())
* @return object if constraints are met
*/
public Object getUserData(int index) {
@ -101,7 +101,7 @@ public class OpenH264DownloadHelper {
/**
* @param index
* @param object
* @constraints (index >= 0 && index < userData.size())
* constraints (index superior or egal to 0 and index inferior to userData.size())
*/
public void setUserData(int index, Object object) {
if (index < 0 || index > userData.size()) return;