]> sjero.net Git - linphone/commitdiff
replace vectors by array lin LinphoneCore.java
authorJehan Monnier <jehan.monnier@linphone.org>
Wed, 2 May 2012 08:10:20 +0000 (10:10 +0200)
committerJehan Monnier <jehan.monnier@linphone.org>
Wed, 2 May 2012 08:11:14 +0000 (10:11 +0200)
java/common/org/linphone/core/LinphoneCore.java

index 31300e384dfb082aff3cb797f0c453dabcfba68e..f33415b46cc9cbc6e4fd5d4f9401552b97ff6a8c 100644 (file)
@@ -409,7 +409,7 @@ public interface LinphoneCore {
        /**
         * @return a list of LinphoneCallLog 
         */
-       public Vector getCallLogs();
+       public LinphoneCallLog[] getCallLogs();
        
        /**
         * This method is called by the application to notify the Linphone core library when network is reachable.
@@ -690,7 +690,7 @@ public interface LinphoneCore {
        int getConferenceSize();
        
        void terminateAllCalls();
-       Vector getCalls();
+       LinphoneCall[] getCalls();
        int getCallsNb();