Remove build warnings of Tizen.Tracer 92/149292/1
authorjoon.c.baek <joon.c.baek@samsung.com>
Tue, 12 Sep 2017 05:01:06 +0000 (14:01 +0900)
committerjoon.c.baek <joon.c.baek@samsung.com>
Tue, 12 Sep 2017 05:08:49 +0000 (14:08 +0900)
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 <joon.c.baek@samsung.com>
src/Tizen.Tracer/Tizen/Tracer.cs

index 5fffbbb..020c97f 100755 (executable)
@@ -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.
         /// </remarks>
-        /// <seealso cref="Tizen.Tracer.Begin()"/>
+        /// <seealso cref="Tizen.Tracer.Begin(String)"/>
         public static void End ()
         {
             Interop.Tracer.End ();
@@ -57,7 +57,7 @@ namespace Tizen
         /// </remarks>
         /// <param name="cookie">An unique identifier for distinguishing simultaneous events.</param>
         /// <param name="name">The name of an event (optionally containing format specifiers).</param>
-        /// <seealso cref="Tizen.Tracer.AsyncEnd()"/>
+        /// <seealso cref="Tizen.Tracer.AsyncEnd(int, String)"/>
         public static void AsyncBegin (int cookie, String name)
         {
             Interop.Tracer.AsyncBegin (cookie, name);
@@ -72,7 +72,7 @@ namespace Tizen
         /// </remarks>
         /// <param name="cookie">An unique identifier for distinguishing simultaneous events.</param>
         /// <param name="name">The name of an event (optionally containing format specifiers).</param>
-        /// <seealso cref="Tizen.Tracer.AsyncBegin()"/>
+        /// <seealso cref="Tizen.Tracer.AsyncBegin(int, String)"/>
         public static void AsyncEnd (int cookie, String name)
         {
             Interop.Tracer.AsyncEnd (cookie, name);