From: jongmyeongko Date: Wed, 15 Feb 2017 13:10:54 +0000 (+0900) Subject: Fix wrong comments X-Git-Tag: submit/trunk/20170823.075128~121^2~101 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=65ae22c601d8414be84ee1b91b675ed8fd55f3ff;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git Fix wrong comments Change-Id: I403f9b6e6ccf98b52086a5fbce1d12d2c308b03d Signed-off-by: jongmyeongko --- diff --git a/src/Tizen.Applications.PackageManager/Tizen.Applications/Package.cs b/src/Tizen.Applications.PackageManager/Tizen.Applications/Package.cs index d5abcd3..9049e71 100755 --- a/src/Tizen.Applications.PackageManager/Tizen.Applications/Package.cs +++ b/src/Tizen.Applications.PackageManager/Tizen.Applications/Package.cs @@ -139,7 +139,7 @@ namespace Tizen.Applications /// /// Retrieves all application IDs of this package. /// - /// Returns a dictionary containing all application info for given application type asynchronously. + /// Returns a dictionary containing all application info for given application type. public IEnumerable GetApplications() { return GetApplications(ApplicationType.All); @@ -149,7 +149,7 @@ namespace Tizen.Applications /// Retrieves all application IDs of this package. /// /// Optional: AppType enum value - /// Returns a dictionary containing all application info for given application type asynchronously. + /// Returns a dictionary containing all application info for given application type. public IEnumerable GetApplications(ApplicationType type) { List appInfoList = new List(); diff --git a/src/Tizen.Applications.PackageManager/Tizen.Applications/PackageFilter.cs b/src/Tizen.Applications.PackageManager/Tizen.Applications/PackageFilter.cs index 6b7df3b..8ebff43 100755 --- a/src/Tizen.Applications.PackageManager/Tizen.Applications/PackageFilter.cs +++ b/src/Tizen.Applications.PackageManager/Tizen.Applications/PackageFilter.cs @@ -19,7 +19,7 @@ using System.Collections.Generic; namespace Tizen.Applications { /// - /// This class is a parameter of PackageManager::GetPackagesAsync method. + /// This class is a parameter of PackageManager::GetPackages method. /// public class PackageFilter { @@ -42,7 +42,7 @@ namespace Tizen.Applications } /// - /// Filters to be used in the GetPackagesAsync method. + /// Filters to be used in the GetPackages method. /// public IDictionary Filters { @@ -53,7 +53,7 @@ namespace Tizen.Applications } /// - /// This class contains possible keys for filter to be used in the GetPackagesAsync method. + /// This class contains possible keys for filter to be used in the GetPackages method. /// public static class Keys { diff --git a/src/Tizen.Applications.PackageManager/Tizen.Applications/PackageManager.cs b/src/Tizen.Applications.PackageManager/Tizen.Applications/PackageManager.cs index 136d1c9..a4be778 100644 --- a/src/Tizen.Applications.PackageManager/Tizen.Applications/PackageManager.cs +++ b/src/Tizen.Applications.PackageManager/Tizen.Applications/PackageManager.cs @@ -172,7 +172,7 @@ namespace Tizen.Applications /// /// Retrieves package information of all installed packages. /// - /// Returns the list of packages asynchronously. + /// Returns the list of packages. /// http://tizen.org/privilege/packagemanager.info public static IEnumerable GetPackages() { @@ -183,7 +183,7 @@ namespace Tizen.Applications /// Retrieves package information of all installed packages satisfying filter conditions. /// /// Optional - package filters - /// Returns the list of packages asynchronously. + /// Returns the list of packages. /// http://tizen.org/privilege/packagemanager.info public static IEnumerable GetPackages(PackageFilter filter) {