Comment out RemoveAll() of List & Map in example code
authordahyeong.kim <dahyeong.kim@samsung.com>
Wed, 3 Apr 2013 07:51:05 +0000 (16:51 +0900)
committerdahyeong.kim <dahyeong.kim@samsung.com>
Wed, 3 Apr 2013 07:51:05 +0000 (16:51 +0900)
Change-Id: I9c8510338cc5102d2b41ec65c693208c81006665
Signed-off-by: dahyeong.kim <dahyeong.kim@samsung.com>
inc/FBaseColArrayList.h
inc/FBaseColHashMap.h
inc/FBaseColLinkedList.h
inc/FBaseColMultiHashMap.h

index 1991f74..eef2c9c 100644 (file)
@@ -92,7 +92,7 @@ namespace Tizen { namespace Base { namespace Collection
  *
  *             // Deallocates all objects
  *             // Because the destructor calls RemoveAll() internally, you do not need to call RemoveAll() to destroy all elements at the end.
- *             list.RemoveAll();
+ *             // list.RemoveAll();
  *     }
  * @endcode
  */
index 9ce0f3a..8b011a6 100644 (file)
@@ -85,8 +85,7 @@ class _HashMapEntry;
  *
  *             // Deallocates all objects
  *             // Because the destructor calls RemoveAll() internally, you do not need to call RemoveAll() to destroy all elements at the end.
- *             map.RemoveAll();
- *
+ *             // map.RemoveAll();
  *     }
  * @endcode
  */
index 1dff891..19c49ac 100644 (file)
@@ -87,7 +87,7 @@ class _ListNode;
  *
  *             // Deallocates all objects
  *             // Because the destructor calls RemoveAll() internally, you do not need to call RemoveAll() to destroy all elements at the end.
- *             list.RemoveAll();
+ *             // list.RemoveAll();
  *     }
  * @endcode
  */
index 727ae4a..597d8d9 100644 (file)
@@ -94,7 +94,7 @@ class _MultiHashMapEntry;
  *
  *             // Deallocates all objects
  *             // Because the destructor calls RemoveAll() internally, you do not need to call RemoveAll() to destroy all elements at the end.
- *             map.RemoveAll();
+ *             // map.RemoveAll();
  *     }
  * @endcode
  */