From 2ba13328e67cacb955b9e0b4d4d46259d77110f2 Mon Sep 17 00:00:00 2001 From: Axi_Beft Date: Mon, 9 Jun 2025 23:35:58 +0800 Subject: [PATCH] =?UTF-8?q?=E9=9D=99=E6=80=81=E6=A3=80=E6=9F=A5=E5=91=8A?= =?UTF-8?q?=E8=AD=A6=E6=B8=85=E9=9B=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Axi_Beft --- .../service/data_share/data_share_service_impl.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/services/distributeddataservice/service/data_share/data_share_service_impl.cpp b/services/distributeddataservice/service/data_share/data_share_service_impl.cpp index 076bdd96d..646801fda 100644 --- a/services/distributeddataservice/service/data_share/data_share_service_impl.cpp +++ b/services/distributeddataservice/service/data_share/data_share_service_impl.cpp @@ -127,7 +127,7 @@ std::pair DataShareServiceImpl::InsertEx(const std::string &ur if (errCode == E_OK && ret > 0) { NotifyChange(uri, providerInfo.visitedUserId); RdbSubscriberManager::GetInstance().Emit(uri, providerInfo.visitedUserId, metaData); - } + } if (errCode != E_OK) { ReportExcuteFault(callingTokenId, providerInfo, errCode, func); } @@ -175,7 +175,7 @@ std::pair DataShareServiceImpl::UpdateEx(const std::string &ur if (errCode == E_OK && ret > 0) { NotifyChange(uri, providerInfo.visitedUserId); RdbSubscriberManager::GetInstance().Emit(uri, providerInfo.visitedUserId, metaData); - } + } if (errCode != E_OK) { ReportExcuteFault(callingTokenId, providerInfo, errCode, func); } @@ -204,7 +204,7 @@ std::pair DataShareServiceImpl::DeleteEx(const std::string &ur if (errCode == E_OK && ret > 0) { NotifyChange(uri, providerInfo.visitedUserId); RdbSubscriberManager::GetInstance().Emit(uri, providerInfo.visitedUserId, metaData); - } + } if (errCode != E_OK) { ReportExcuteFault(callingTokenId, providerInfo, errCode, func); } -- Gitee