aboutsummaryrefslogtreecommitdiff
path: root/backends/cloud/id
diff options
context:
space:
mode:
authorAlexander Tkachev2016-07-14 09:19:12 +0600
committerAlexander Tkachev2016-08-24 16:07:55 +0600
commitb4e9e35e07538a118588742aff6fd4a7a2b4d600 (patch)
treef332710318f4880baf8fc7f58902caca3314d77d /backends/cloud/id
parent0b5bd18d8525e16749ad422913800b2120021240 (diff)
downloadscummvm-rg350-b4e9e35e07538a118588742aff6fd4a7a2b4d600.tar.gz
scummvm-rg350-b4e9e35e07538a118588742aff6fd4a7a2b4d600.tar.bz2
scummvm-rg350-b4e9e35e07538a118588742aff6fd4a7a2b4d600.zip
CLOUD: Cleanup in Storages
Diffstat (limited to 'backends/cloud/id')
-rw-r--r--backends/cloud/id/idstorage.cpp11
-rw-r--r--backends/cloud/id/idstorage.h1
2 files changed, 0 insertions, 12 deletions
diff --git a/backends/cloud/id/idstorage.cpp b/backends/cloud/id/idstorage.cpp
index 3aeb5146cd..28f880522e 100644
--- a/backends/cloud/id/idstorage.cpp
+++ b/backends/cloud/id/idstorage.cpp
@@ -35,17 +35,6 @@ namespace Id {
IdStorage::~IdStorage() {}
-void IdStorage::printJson(Networking::JsonResponse response) {
- Common::JSONValue *json = response.value;
- if (!json) {
- warning("printJson: NULL");
- return;
- }
-
- debug("%s", json->stringify().c_str());
- delete json;
-}
-
void IdStorage::printFiles(FileArrayResponse response) {
debug("files:");
Common::Array<StorageFile> &files = response.value;
diff --git a/backends/cloud/id/idstorage.h b/backends/cloud/id/idstorage.h
index 88853e4ad8..ccadc0e455 100644
--- a/backends/cloud/id/idstorage.h
+++ b/backends/cloud/id/idstorage.h
@@ -45,7 +45,6 @@ namespace Id {
class IdStorage: public Cloud::Storage {
protected:
- void printJson(Networking::JsonResponse response);
void printFiles(FileArrayResponse response);
void printBool(BoolResponse response);
void printFile(UploadResponse response);