From 289a76f1e8fbd3633a620d58a11ff6b4eba45d7c Mon Sep 17 00:00:00 2001 From: xuwenqi Date: Thu, 12 Jun 2025 17:59:52 +0800 Subject: [PATCH] =?UTF-8?q?=E9=9D=99=E6=80=81=E5=91=8A=E8=AD=A6=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: xuwenqi --- .../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 99bff919b..9a8146d21 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