diff --git a/apps/files/appinfo/application.php b/apps/files/appinfo/application.php
index 13ff60daf89cc8b3b109215e55b1f2f675e18d78..5203946f8272490b40c316a1ea8673b06e96f783 100644
--- a/apps/files/appinfo/application.php
+++ b/apps/files/appinfo/application.php
@@ -19,7 +19,6 @@ class Application extends App {
 		parent::__construct('files', $urlParams);
 		$container = $this->getContainer();
 
-
 		/**
 		 * Controllers
 		 */
@@ -52,16 +51,5 @@ class Application extends App {
 				$homeFolder
 			);
 		});
-
-		/**
-		 * Controllers
-		 */
-		$container->registerService('APIController', function (IContainer $c) {
-			return new ApiController(
-				$c->query('AppName'),
-				$c->query('Request'),
-				$c->query('TagService')
-			);
-		});
 	}
 }