[Release] wrt-plugins-common_0.3.74
[platform/framework/web/wrt-plugins-common.git] / src / modules / tizen / DEPRACATED / System / Environment.cpp
index b75dfa9..39c80aa 100644 (file)
@@ -93,8 +93,7 @@ std::string Environment::getHardwareName() const
     std::string result;
     char line[LINE_MAX] = { 0 };
     pcrecpp::RE re(PATTERN_CPUINFO_HARDWARE);
-    while (fgets(line, LINE_MAX, file) && !re.FullMatch(line, &result)) {
-    }
+    while (fgets(line, LINE_MAX, file) && !re.FullMatch(line, &result)) {}
     fclose(file);
 
     if (result.empty()) {
@@ -121,8 +120,7 @@ std::string Environment::getVariable(const char* name)
 }
 
 Environment::Environment()
-{
-}
+{}
 } // System
 } // Platform
 } // WrtPlugins