removed useless namespace aliasing

This commit is contained in:
Bernhard Posselt
2013-01-30 12:29:24 +01:00
parent c1ff4bfbbf
commit 166d8cf10a
6 changed files with 11 additions and 11 deletions

View File

@@ -24,8 +24,8 @@ The apptemplate comes with several different controllers. A simple controller wo
namespace OCA\YourApp\Controller;
use \OCA\AppFramework\Controller\Controller as Controller;
use \OCA\AppFramework\Http\JSONResponse as JSONResponse;
use \OCA\AppFramework\Controller\Controller;
use \OCA\AppFramework\Http\JSONResponse;
class MyController extends Controller {