From 22e6e3a18c799a890db6084a4b0c109bbfb5ce0f Mon Sep 17 00:00:00 2001 From: "Vincent (Wen Yu) Ge" Date: Sun, 25 Feb 2024 22:59:53 +0000 Subject: [PATCH] Revert left over prints --- src/Appwrite/Specification/Format/Swagger2.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/Appwrite/Specification/Format/Swagger2.php b/src/Appwrite/Specification/Format/Swagger2.php index c906969c14..dd2b12b6b6 100644 --- a/src/Appwrite/Specification/Format/Swagger2.php +++ b/src/Appwrite/Specification/Format/Swagger2.php @@ -122,10 +122,6 @@ class Swagger2 extends Format $method = $route->getLabel('sdk.method', \uniqid()); $desc = (!empty($route->getLabel('sdk.description', ''))) ? \realpath(__DIR__ . '/../../../../' . $route->getLabel('sdk.description', '')) : null; - if ($desc == null){ - echo $route->getLabel('sdk.description', ''); - echo ''; - } $produces = $route->getLabel('sdk.response.type', null); $model = $route->getLabel('sdk.response.model', 'none'); $routeSecurity = $route->getLabel('sdk.auth', []);