From: Jehan Monnier Date: Wed, 2 May 2012 08:10:20 +0000 (+0200) Subject: replace vectors by array lin LinphoneCore.java X-Git-Url: http://sjero.net/git/?p=linphone;a=commitdiff_plain;h=504a67b0e74c9d9a23c95e8e38127368c8276804 replace vectors by array lin LinphoneCore.java --- diff --git a/java/common/org/linphone/core/LinphoneCore.java b/java/common/org/linphone/core/LinphoneCore.java index 31300e38..f33415b4 100644 --- a/java/common/org/linphone/core/LinphoneCore.java +++ b/java/common/org/linphone/core/LinphoneCore.java @@ -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();