Source code formating unification
[platform/framework/web/wrt-plugins-common.git] / src / Commons / StringUtils.h
index ee7cbe8..b36071f 100644 (file)
@@ -31,7 +31,6 @@
 namespace WrtDeviceApis {
 namespace Commons {
 namespace String {
-
 /**
  * Removes spaces from begining of the string.
  * @param str String to remove spaces from.
@@ -155,13 +154,11 @@ template<typename T>
 std::string parse(const T& data)
 {
     std::ostringstream oss;
-    if (!(oss << data))
-    {
+    if (!(oss << data)) {
         Throw(ConversionException);
     }
     return oss.str();
 }
-
 }
 }
 }