[Download] - fixed code intentation
authorAndrzej Popowski <a.popowski@samsung.com>
Fri, 16 Oct 2015 12:24:04 +0000 (14:24 +0200)
committerAndrzej Popowski <a.popowski@samsung.com>
Fri, 16 Oct 2015 12:24:04 +0000 (14:24 +0200)
Change-Id: I3b840a070c3b333006297928340cef8f9a6aa39b
Signed-off-by: Andrzej Popowski <a.popowski@samsung.com>
src/download/download_instance.cc

index 79f43df6de8cb942dc611016af86825400d7a4a4..fc49364399c4b393f376ab512734713354f1621f 100755 (executable)
@@ -751,19 +751,19 @@ void DownloadInstance::DownloadManagerGetstate
 
     ReportSuccess(picojson::value(stateValue), out);
   } else if (ret == DOWNLOAD_ERROR_INVALID_PARAMETER) {
-      ReportError(InvalidValuesException(
-      "The input parameter contains an invalid value."), out);
-    } else if (ret == DOWNLOAD_ERROR_OUT_OF_MEMORY) {
-      ReportError(UnknownException("Out of memory"), out);
-    } else if (ret == DOWNLOAD_ERROR_INVALID_STATE) {
-      ReportError(InvalidValuesException("Invalid state"), out);
-    } else if (ret == DOWNLOAD_ERROR_IO_ERROR) {
-      ReportError(UnknownException("Internal I/O error"), out);
-    } else if (ret == DOWNLOAD_ERROR_PERMISSION_DENIED) {
-      ReportError(UnknownException("Permission denied"), out);
-    } else {
-      ReportError(UnknownException("Unknown Error"), out);
-    }
+    ReportError(InvalidValuesException(
+    "The input parameter contains an invalid value."), out);
+  } else if (ret == DOWNLOAD_ERROR_OUT_OF_MEMORY) {
+    ReportError(UnknownException("Out of memory"), out);
+  } else if (ret == DOWNLOAD_ERROR_INVALID_STATE) {
+    ReportError(InvalidValuesException("Invalid state"), out);
+  } else if (ret == DOWNLOAD_ERROR_IO_ERROR) {
+    ReportError(UnknownException("Internal I/O error"), out);
+  } else if (ret == DOWNLOAD_ERROR_PERMISSION_DENIED) {
+    ReportError(UnknownException("Permission denied"), out);
+  } else {
+    ReportError(UnknownException("Unknown Error"), out);
+  }
 }
 
 void DownloadInstance::DownloadManagerGetmimetype