merge with master
[platform/framework/web/wrt-plugins-common.git] / src / modules / tizen / Filesystem / Utils.cpp
index 7fa5b6b..fc9cde0 100644 (file)
@@ -78,7 +78,6 @@ int mkpath(const char* path,
 
 namespace WrtDeviceApis {
 namespace Filesystem {
-
 bool nodeExists(const std::string& path)
 {
     struct stat info;
@@ -91,12 +90,11 @@ bool nodeExists(const std::string& path)
 }
 
 void makePath(const std::string& path,
-        mode_t mode)
+              mode_t mode)
 {
     if (mkpath(path.c_str(), mode) == -1) {
         ThrowMsg(Commons::PlatformException, "Couldn't create path: " << path);
     }
 }
-
 }
 }