From 035ccdf0786eb2c95767b5fc266d12b2f77f2522 Mon Sep 17 00:00:00 2001 From: Sylvain Berfini Date: Tue, 17 Oct 2017 10:23:55 +0200 Subject: [PATCH] Fixed issue with use of Utils class in java migration script --- wrappers/java/migration.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/wrappers/java/migration.sh b/wrappers/java/migration.sh index 201445415..70b7ae3c0 100644 --- a/wrappers/java/migration.sh +++ b/wrappers/java/migration.sh @@ -8,6 +8,7 @@ eval "$SED_START 's/import org.linphone.tools/import org.linphone.core.tools/g' eval "$SED_START 's/import org.linphone.core.OpenH264DownloadHelperListener/import org.linphone.core.tools.OpenH264DownloadHelperListener/g' $SED_END" # Listeners +eval "$SED_START 's/LinphoneAccountCreator.AccountCreatorListener/AccountCreatorListener/g' $SED_END" eval "$SED_START 's/AccountCreator.AccountCreatorListener/AccountCreatorListener/g' $SED_END" eval "$SED_START 's/LinphoneCoreListenerBase/CoreListenerStub/g' $SED_END" eval "$SED_START 's/LinphoneCoreListener/CoreListener/g' $SED_END" @@ -231,8 +232,8 @@ eval "$SED_START 's/mLc.destroy()/mLc = null/g' $SED_END" eval "$SED_START 's/getAllDialPlan()/getDialPlans()/g' $SED_END" eval "$SED_START 's/getCountryName()/getCountry()/g' $SED_END" eval "$SED_START 's/getMSFactory()/getMediastreamerFactory()/g' $SED_END" -eval "$SED_START 's/accountCreator.getPrefix(/org.linphone.core.Utils::getPrefixFromE164(/g' $SED_END" -eval "$SED_START 's/proxyConfig.lookupCCCFromIso(/org.linphone.core.Utils::getCccFromIso(/g' $SED_END" +eval "$SED_START 's/accountCreator.getPrefix(/org.linphone.core.Utils.getPrefixFromE164(/g' $SED_END" +eval "$SED_START 's/proxyConfig.lookupCCCFromIso(/org.linphone.core.Utils.getCccFromIso(/g' $SED_END" eval "$SED_START 's/linkPhoneNumberWithAccount()/linkAccount()/g' $SED_END" eval "$SED_START 's/zoomVideo(/zoom(/g' $SED_END"