aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/inc/Remote/JsonRpcServer.php
diff options
context:
space:
mode:
Diffstat (limited to 'inc/Remote/JsonRpcServer.php')
-rw-r--r--inc/Remote/JsonRpcServer.php10
1 files changed, 0 insertions, 10 deletions
diff --git a/inc/Remote/JsonRpcServer.php b/inc/Remote/JsonRpcServer.php
index 0708eb96f..f92942771 100644
--- a/inc/Remote/JsonRpcServer.php
+++ b/inc/Remote/JsonRpcServer.php
@@ -18,7 +18,6 @@ class JsonRpcServer
public function __construct()
{
$this->remote = new Api();
- $this->remote->setFileTransformation([$this, 'toFile']);
}
/**
@@ -183,13 +182,4 @@ class JsonRpcServer
throw $e;
}
}
-
- /**
- * @param string $data
- * @return string
- */
- public function toFile($data)
- {
- return base64_encode($data);
- }
}