Updated Java tutorials + fixed typo

This commit is contained in:
Sylvain Berfini 2016-02-01 16:49:00 +01:00
parent 64fc5a9594
commit e29cab555d
5 changed files with 52 additions and 1 deletions

View file

@ -335,4 +335,17 @@ public class TutorialBuddyStatus implements LinphoneCoreListener {
// TODO Auto-generated method stub
}
@Override
public void friendListCreated(LinphoneCore lc, LinphoneFriendList list) {
// TODO Auto-generated method stub
}
@Override
public void friendListRemoved(LinphoneCore lc, LinphoneFriendList list) {
// TODO Auto-generated method stub
}
}

View file

@ -251,5 +251,17 @@ public class TutorialChatRoom implements LinphoneCoreListener, LinphoneChatMessa
}
@Override
public void friendListCreated(LinphoneCore lc, LinphoneFriendList list) {
// TODO Auto-generated method stub
}
@Override
public void friendListRemoved(LinphoneCore lc, LinphoneFriendList list) {
// TODO Auto-generated method stub
}
}

View file

@ -257,5 +257,17 @@ public class TutorialHelloWorld implements LinphoneCoreListener {
}
@Override
public void friendListCreated(LinphoneCore lc, LinphoneFriendList list) {
// TODO Auto-generated method stub
}
@Override
public void friendListRemoved(LinphoneCore lc, LinphoneFriendList list) {
// TODO Auto-generated method stub
}
}

View file

@ -286,4 +286,18 @@ public class TutorialRegistration implements LinphoneCoreListener {
// TODO Auto-generated method stub
}
@Override
public void friendListCreated(LinphoneCore lc, LinphoneFriendList list) {
// TODO Auto-generated method stub
}
@Override
public void friendListRemoved(LinphoneCore lc, LinphoneFriendList list) {
// TODO Auto-generated method stub
}
}

View file

@ -70,7 +70,7 @@ class LinphoneFriendListImpl implements LinphoneFriendList, Serializable {
@Override
public void setUri(String uri) {
synchronized(getSyncObject()) {
return setUri(nativePtr, uri);
setUri(nativePtr, uri);
}
}