summaryrefslogtreecommitdiff
path: root/framework/Web/Services
diff options
context:
space:
mode:
authorDavid <ottodavid@gmx.net>2015-08-08 22:48:07 +0200
committerDavid <ottodavid@gmx.net>2015-08-09 09:44:04 +0200
commit92ee7558c6b6dd2461b645cb1f19a81ef8c50db5 (patch)
treec0cad47bd972c6b2c2b38fb144a417268e1bbd5a /framework/Web/Services
parent835e3f8c3a68b5a4577b0e1784f0e8eb1724a525 (diff)
Removed redundand Prado::using statements
Diffstat (limited to 'framework/Web/Services')
-rw-r--r--framework/Web/Services/TSoapServer.php2
1 files changed, 0 insertions, 2 deletions
diff --git a/framework/Web/Services/TSoapServer.php b/framework/Web/Services/TSoapServer.php
index 9e884a26..1a613d1a 100644
--- a/framework/Web/Services/TSoapServer.php
+++ b/framework/Web/Services/TSoapServer.php
@@ -196,14 +196,12 @@ class TSoapServer extends \Prado\TApplicationComponent
$wsdl=$cache->get(self::WSDL_CACHE_PREFIX.$providerClass);
if(is_string($wsdl))
return $wsdl;
- Prado::using('System.Vendor.WsdlGen.WsdlGenerator');
$wsdl=WsdlGenerator::generate($providerClass, $this->getUri(), $this->getEncoding());
$cache->set(self::WSDL_CACHE_PREFIX.$providerClass,$wsdl);
return $wsdl;
}
else
{
- Prado::using('System.Vendor.WsdlGen.WsdlGenerator');
return WsdlGenerator::generate($providerClass, $this->getUri(), $this->getEncoding());
}
}