[devel_3.0_main] Cherry-pick Beautification of source-code. 80383
[platform/framework/native/appfw.git] / src / base / FBaseInt8Comparer.cpp
index 740d54c..bf4599b 100644 (file)
@@ -19,7 +19,6 @@
  * @brief              This is the implementation file for Int8Comparer class.
  * @see                        Int8 and Tizen::Base::Collection::IComparer
  */
-
 #include <FBaseInt8Comparer.h>
 #include <FBaseInt8.h>
 #include <FBaseResult.h>
@@ -40,8 +39,8 @@ Int8Comparer::~Int8Comparer(void)
 result
 Int8Comparer::Compare(const Tizen::Base::Object& obj1, const Tizen::Base::Object& obj2, int& cmp) const
 {
-       const Int8* pInteger1 = dynamic_cast <const Int8*>(&obj1);
-       const Int8* pInteger2 = dynamic_cast <const Int8*>(&obj2);
+       const Int8* pInteger1 = dynamic_cast< const Int8* >(&obj1);
+       const Int8* pInteger2 = dynamic_cast< const Int8* >(&obj2);
 
        SysTryReturn(NID_BASE, (pInteger1 != null && pInteger2 != null), E_INVALID_ARG, E_INVALID_ARG,
                "[%s] Invalid argument is used. Both of the obj1 and obj2 MUST be Integer.", GetErrorMessage(E_INVALID_ARG));