From 77f6d3fa377b811ba9fbad55699c6983c51fd323 Mon Sep 17 00:00:00 2001 From: "joon.c.baek" Date: Tue, 12 Sep 2017 14:01:06 +0900 Subject: [PATCH] Remove build warnings of Tizen.Tracer Remove below build warnings, Tizen/Tracer.cs(46,28): warning CS1574: XML comment has cref attribute 'Begin()' that could not be resolved Tizen/Tracer.cs(60,28): warning CS1574: XML comment has cref attribute 'AsyncEnd()' that could not be resolved Tizen/Tracer.cs(75,28): warning CS1574: XML comment has cref attribute 'AsyncBegin()' that could not be resolved Change-Id: Id21692ba69eab65b07429c8544ada10031c0c216 Signed-off-by: joon.c.baek --- src/Tizen.Tracer/Tizen/Tracer.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Tizen.Tracer/Tizen/Tracer.cs b/src/Tizen.Tracer/Tizen/Tracer.cs index 5fffbbb..020c97f 100755 --- a/src/Tizen.Tracer/Tizen/Tracer.cs +++ b/src/Tizen.Tracer/Tizen/Tracer.cs @@ -43,7 +43,7 @@ namespace Tizen /// Tizen.Tracer.End() ends the most recently called Tizen.Tracer.Begin(). /// The specific error code can be obtained using the Tizen.Internals.Errors.ErrorFacts.GetLastResult() method. /// - /// + /// public static void End () { Interop.Tracer.End (); @@ -57,7 +57,7 @@ namespace Tizen /// /// An unique identifier for distinguishing simultaneous events. /// The name of an event (optionally containing format specifiers). - /// + /// public static void AsyncBegin (int cookie, String name) { Interop.Tracer.AsyncBegin (cookie, name); @@ -72,7 +72,7 @@ namespace Tizen /// /// An unique identifier for distinguishing simultaneous events. /// The name of an event (optionally containing format specifiers). - /// + /// public static void AsyncEnd (int cookie, String name) { Interop.Tracer.AsyncEnd (cookie, name); -- 2.7.4