From 8ecf77f760c49fd319b80a2bd5daefaba5a7cd72 Mon Sep 17 00:00:00 2001 From: Prianka Liz Kariat Date: Mon, 16 Jan 2023 13:02:33 +0530 Subject: [PATCH] Updated comment style in methods --- mediapipe/tasks/ios/common/utils/sources/MPPCommonUtils.mm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mediapipe/tasks/ios/common/utils/sources/MPPCommonUtils.mm b/mediapipe/tasks/ios/common/utils/sources/MPPCommonUtils.mm index 27b75515..538023df 100644 --- a/mediapipe/tasks/ios/common/utils/sources/MPPCommonUtils.mm +++ b/mediapipe/tasks/ios/common/utils/sources/MPPCommonUtils.mm @@ -72,7 +72,7 @@ using absl::StatusCode; return YES; } - /** Converts the absl status message to an NSString. */ + // Converts the absl status message to an NSString. NSString *description = [NSString stringWithCString:status.ToString(absl::StatusToStringMode::kWithNoExtraData).c_str() encoding:NSUTF8StringEncoding]; @@ -81,8 +81,8 @@ using absl::StatusCode; MPPTasksErrorCode errorCode = genericErrorCode; - /** Maps the absl::StatusCode to the appropriate MPPTasksErrorCode. Note: MPPTasksErrorCode omits - * absl::StatusCode::kOk. */ + // Maps the absl::StatusCode to the appropriate MPPTasksErrorCode. Note: MPPTasksErrorCode omits + // absl::StatusCode::kOk. switch (status.code()) { case StatusCode::kCancelled: errorCode = MPPTasksErrorCodeCancelledError;