Removes obsolete imports
authorMatthias Schmidt <gravatronics@live.com>
Thu, 7 Feb 2013 10:20:24 +0000 (11:20 +0100)
committerMatthias Schmidt <gravatronics@live.com>
Thu, 7 Feb 2013 10:20:24 +0000 (11:20 +0100)
30 files changed:
wcfsetup/install/files/lib/acp/action/CacheClearAction.class.php
wcfsetup/install/files/lib/acp/action/WorkerProxyAction.class.php
wcfsetup/install/files/lib/acp/page/AbstractCategoryListPage.class.php
wcfsetup/install/files/lib/action/APIAction.class.php
wcfsetup/install/files/lib/data/VersionableDatabaseObject.class.php
wcfsetup/install/files/lib/data/application/ApplicationAction.class.php
wcfsetup/install/files/lib/data/cronjob/Cronjob.class.php
wcfsetup/install/files/lib/data/option/Option.class.php
wcfsetup/install/files/lib/data/option/OptionEditor.class.php
wcfsetup/install/files/lib/data/package/Package.class.php
wcfsetup/install/files/lib/data/package/PackageAction.class.php
wcfsetup/install/files/lib/data/package/update/PackageUpdateAction.class.php
wcfsetup/install/files/lib/data/page/menu/item/PageMenuItemAction.class.php
wcfsetup/install/files/lib/system/application/ApplicationHandler.class.php
wcfsetup/install/files/lib/system/cache/builder/ACPMenuCacheBuilder.class.php
wcfsetup/install/files/lib/system/cache/builder/LanguageCacheBuilder.class.php
wcfsetup/install/files/lib/system/cache/builder/OptionCacheBuilder.class.php
wcfsetup/install/files/lib/system/cache/builder/VersionCacheBuilder.class.php
wcfsetup/install/files/lib/system/cache/source/ApcCacheSource.class.php
wcfsetup/install/files/lib/system/cache/source/DiskCacheSource.class.php
wcfsetup/install/files/lib/system/menu/page/PageMenu.class.php
wcfsetup/install/files/lib/system/package/PackageUninstallationDispatcher.class.php
wcfsetup/install/files/lib/system/package/PackageUninstallationNodeBuilder.class.php
wcfsetup/install/files/lib/system/package/plugin/OptionPackageInstallationPlugin.class.php
wcfsetup/install/files/lib/system/package/plugin/TemplateListenerPackageInstallationPlugin.class.php
wcfsetup/install/files/lib/system/package/plugin/UserGroupOptionPackageInstallationPlugin.class.php
wcfsetup/install/files/lib/system/package/plugin/UserOptionPackageInstallationPlugin.class.php
wcfsetup/install/files/lib/system/style/StyleCompiler.class.php
wcfsetup/install/files/lib/system/template/plugin/PagesFunctionTemplatePlugin.class.php
wcfsetup/install/files/lib/system/version/VersionHandler.class.php

index 05e592918170e36d036ee859f8d3821159baa008..d211fef3c7e4f8a908a5ce8cbb4ac48ae5bbe350 100644 (file)
@@ -5,7 +5,6 @@ use wcf\system\cache\CacheHandler;
 use wcf\system\language\LanguageFactory;
 use wcf\system\request\LinkHandler;
 use wcf\system\style\StyleHandler;
-use wcf\system\WCF;
 use wcf\util\HeaderUtil;
 
 /**
index f89366cb87b54bdb4f67312a905ff8e27530fd9c..d928958c3be26cd6767a64bd88c0a2f37c057c18 100644 (file)
@@ -2,7 +2,6 @@
 namespace wcf\acp\action;
 use wcf\action\AbstractSecureAction;
 use wcf\action\AJAXInvokeAction;
-use wcf\system\exception\AJAXException;
 use wcf\system\exception\SystemException;
 use wcf\system\WCF;
 use wcf\util\ClassUtil;
@@ -12,7 +11,7 @@ use wcf\util\JSON;
  * Handles worker actions.
  * 
  * @author     Alexander Ebert
- * @copyright  2001-2012 WoltLab GmbH
+ * @copyright  2001-2013 WoltLab GmbH
  * @license    GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
  * @package    com.woltlab.wcf
  * @subpackage acp.action
index 08ff917b9849a528f671aa3e4a8bd16eacef2c6a..188ca839d02fa39c0358b898bbef3176f1fdf191 100644 (file)
@@ -5,7 +5,6 @@ use wcf\page\AbstractPage;
 use wcf\system\category\CategoryHandler;
 use wcf\system\exception\PermissionDeniedException;
 use wcf\system\exception\SystemException;
-use wcf\system\menu\acp\ACPMenu;
 use wcf\system\user\collapsible\content\UserCollapsibleContentHandler;
 use wcf\system\WCF;
 use wcf\util\StringUtil;
@@ -15,7 +14,7 @@ use wcf\util\StringUtil;
  * type.
  *
  * @author     Matthias Schmidt
- * @copyright  2001-2012 WoltLab GmbH
+ * @copyright  2001-2013 WoltLab GmbH
  * @license    GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
  * @package    com.woltlab.wcf
  * @subpackage acp.page
index c88a25643f49883f01f581528cf1dd6b223cc2b1..6b7e330b6439a86c5a91b63236b40239c8d0bdaf 100644 (file)
@@ -4,13 +4,12 @@ use wcf\system\api\rest\response\IRESTfulResponse;
 use wcf\system\exception\AJAXException;
 use wcf\system\exception\IllegalLinkException;
 use wcf\system\request\RouteHandler;
-use wcf\system\WCF;
 
 /**
  * This action provides RESTful access to database objects.
  * 
  * @author     Jeffrey Reichardt
- * @copyright  2001-2012 WoltLab GmbH
+ * @copyright  2001-2013 WoltLab GmbH
  * @license    GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
  * @package    com.woltlab.wcf
  * @subpackage action
index 0af37a750c42c0ff829fb024f000ff33e30ff975..a4750353f6fe602fa8f7099d2cb662fda3828d72 100644 (file)
@@ -2,13 +2,12 @@
 namespace wcf\data;
 use wcf\system\exception\SystemException;
 use wcf\system\version\VersionHandler;
-use wcf\util\StringUtil;
 
 /**
  * Abstract class for all versionable data classes.
  * 
  * @author     Jeffrey Reichardt
- * @copyright  2001-2012 WoltLab GmbH
+ * @copyright  2001-2013 WoltLab GmbH
  * @license    GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
  * @package    com.woltlab.wcf
  * @subpackage data
index 4a59a0374e881759d84412a85bc54b5d786e56ce..9029d08b4685e7ca84966b9d9abac9b772c61dc7 100644 (file)
@@ -1,9 +1,6 @@
 <?php
 namespace wcf\data\application;
-use wcf\data\package\Package;
-use wcf\data\package\PackageCache;
 use wcf\data\AbstractDatabaseObjectAction;
-use wcf\system\cache\CacheHandler;
 use wcf\system\exception\PermissionDeniedException;
 use wcf\system\exception\UserInputException;
 use wcf\system\WCF;
@@ -13,7 +10,7 @@ use wcf\util\FileUtil;
  * Executes application-related actions.
  * 
  * @author     Alexander Ebert
- * @copyright  2001-2012 WoltLab GmbH
+ * @copyright  2001-2013 WoltLab GmbH
  * @license    GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
  * @package    com.woltlab.wcf
  * @subpackage data.application
index 65ad448d7a77fab52a3cc4d2e5e0de519a81841b..2875aa38701e368a16cdfd611d81df2fd9335f07 100644 (file)
@@ -1,14 +1,13 @@
 <?php
 namespace wcf\data\cronjob;
 use wcf\data\DatabaseObject;
-use wcf\system\WCF;
 use wcf\util\CronjobUtil;
 
 /**
  * Represents a cronjob.
  * 
  * @author     Alexander Ebert
- * @copyright  2001-2011 WoltLab GmbH
+ * @copyright  2001-2013 WoltLab GmbH
  * @license    GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
  * @package    com.woltlab.wcf
  * @subpackage data.cronjob
index 5e5d4f8eda448f3b6d198f0deeb05c6f55b59991..a2f2bb3ba4af44d570361125c060c65eb698ab96 100644 (file)
@@ -1,6 +1,5 @@
 <?php
 namespace wcf\data\option;
-use wcf\data\package\Package;
 use wcf\data\DatabaseObject;
 use wcf\system\WCF;
 use wcf\util\StringUtil;
index 073704b4b83b08edac7a0f003ac7937cdde8340a..02b119889f5ed2d0ca1e2a24968518fa255e92a6 100644 (file)
@@ -5,7 +5,6 @@ use wcf\data\IEditableCachedObject;
 use wcf\system\cache\builder\OptionCacheBuilder;
 use wcf\system\io\File;
 use wcf\system\WCF;
-use wcf\util\FileUtil;
 
 /**
  * Provides functions to edit options.
index d53604782e0dfa020200051cc6691889ab0f56ef..46a1b8ff88bc4e3f72f6ec4d9763f4da8030c12e 100644 (file)
@@ -1,7 +1,6 @@
 <?php
 namespace wcf\data\package;
 use wcf\data\DatabaseObject;
-use wcf\system\exception\SystemException;
 use wcf\system\io\File;
 use wcf\system\package\PackageInstallationDispatcher;
 use wcf\system\WCF;
index 4603f02a224e5acbdd4ffb17fdd08b0771bd3ff8..973dd146e8b42ecf45e69acf3bb7efaa743ed7d8 100644 (file)
@@ -2,7 +2,6 @@
 namespace wcf\data\package;
 use wcf\data\AbstractDatabaseObjectAction;
 use wcf\system\exception\PermissionDeniedException;
-use wcf\system\exception\UserInputException;
 use wcf\system\WCF;
 
 /**
index de81ac3bc21cfb014149073362f242295f0b57b0..5aeb51e31581ba725aab09c1cfde46e70bd899d3 100644 (file)
@@ -1,6 +1,5 @@
 <?php
 namespace wcf\data\package\update;
-use wcf\data\package\update\version\PackageUpdateVersion;
 use wcf\data\search\Search;
 use wcf\data\search\SearchEditor;
 use wcf\data\AbstractDatabaseObjectAction;
index b0298b0f1be5bff087e555dadc0b30c1b882cb23..1aff996f0cb30662df030b4ce7ff81cdfd6318ee 100644 (file)
@@ -3,7 +3,6 @@ namespace wcf\data\page\menu\item;
 use wcf\data\AbstractDatabaseObjectAction;
 use wcf\data\ISortableAction;
 use wcf\data\IToggleAction;
-use wcf\system\database\util\PreparedStatementConditionBuilder;
 use wcf\system\exception\PermissionDeniedException;
 use wcf\system\exception\UserInputException;
 use wcf\system\WCF;
index da1ca994f36d04cbec337de1f229c1b4d70cf9ea..10c4a36c96dcfc23f84cfc462f394a2358b553d9 100644 (file)
@@ -1,7 +1,6 @@
 <?php
 namespace wcf\system\application;
 use wcf\data\application\ApplicationAction;
-use wcf\data\application\ApplicationEditor;
 use wcf\data\application\ApplicationList;
 use wcf\system\cache\builder\ApplicationCacheBuilder;
 use wcf\system\SingletonFactory;
index edcbf5b4b69f4f5a00d11997c64cc5d7440ac1d6..4b31ec51ce2b517a008f8f75d4fe92b47f945ac2 100644 (file)
@@ -5,7 +5,6 @@ use wcf\data\acp\menu\item\ACPMenuItemList;
 use wcf\data\option\category\OptionCategory;
 use wcf\data\option\category\OptionCategoryList;
 use wcf\data\option\OptionList;
-use wcf\system\request\LinkHandler;
 
 /**
  * Caches the ACP menu items.
index 1a90d52ad16b91627cb3563b8c3f593947328c20..4b5df086609db1ead199350370873cff07a2f929 100644 (file)
@@ -3,7 +3,6 @@ namespace wcf\system\cache\builder;
 use wcf\data\language\category\LanguageCategoryList;
 use wcf\data\language\LanguageList;
 use wcf\data\DatabaseObject;
-use wcf\system\WCF;
 
 /**
  * Caches languages and the id of the default language. 
index d89358db9cf5f3aaa86975bd065f411841f8bd80..3b654d170df1e9dada377efdb07749a1d7ef9caf 100644 (file)
@@ -2,7 +2,6 @@
 namespace wcf\system\cache\builder;
 use wcf\data\option\category\OptionCategory;
 use wcf\system\database\util\PreparedStatementConditionBuilder;
-use wcf\system\Regex;
 use wcf\system\WCF;
 
 /**
index 79853226b558d88fef459be6a9eaf8cc7bf921c9..7147e767f2dafc534fd4bec01c7e1bee23eea60f 100644 (file)
@@ -1,7 +1,6 @@
 <?php
 namespace wcf\system\cache\builder;
 use wcf\data\object\type\ObjectTypeCache;
-use wcf\system\package\PackageDependencyHandler;
 use wcf\system\WCF;
 
 /**
index 4ce0278d6f8664d685547e3ea06d9c6192b9fe0f..eb207b621089087af88a5d4283ccd77c66ff9e4c 100644 (file)
@@ -2,7 +2,6 @@
 namespace wcf\system\cache\source;
 use wcf\system\exception\SystemException;
 use wcf\system\Regex;
-use wcf\util\FileUtil;
 use wcf\util\StringUtil;
 
 /**
index 17e23502606317058033a3afb23fd29ec24938e0..36a5bc1f2e8c2a1a1ef193cee43e76f5ab401190 100644 (file)
@@ -4,7 +4,6 @@ use wcf\system\exception\SystemException;
 use wcf\system\io\File;
 use wcf\system\Callback;
 use wcf\system\Regex;
-use wcf\system\WCF;
 use wcf\util\DirectoryUtil;
 use wcf\util\FileUtil;
 
index 714aad0fe4953ada3763d7c8770b7860d167f608..37be301798f387466d33dc6f18b2fc4480e2bf67 100644 (file)
@@ -1,12 +1,10 @@
 <?php
 namespace wcf\system\menu\page;
-use wcf\system\breadcrumb\Breadcrumb;
 use wcf\system\cache\builder\PageMenuCacheBuilder;
 use wcf\system\event\EventHandler;
 use wcf\system\exception\SystemException;
 use wcf\system\menu\ITreeMenuItem;
 use wcf\system\menu\TreeMenu;
-use wcf\system\WCF;
 
 /**
  * Builds the page menu.
index 5463d54bc5d3acd8e1e11983088d1ff97430aa6e..a4a766910fd5029af3b815f11621982f08b88fd2 100644 (file)
@@ -4,7 +4,6 @@ use wcf\data\option\OptionEditor;
 use wcf\data\package\installation\queue\PackageInstallationQueue;
 use wcf\data\package\Package;
 use wcf\data\package\PackageEditor;
-use wcf\data\package\PackageList;
 use wcf\system\application\ApplicationHandler;
 use wcf\system\cache\builder\PackageCacheBuilder;
 use wcf\system\cache\CacheHandler;
@@ -16,7 +15,6 @@ use wcf\system\package\plugin\SQLPackageInstallationPlugin;
 use wcf\system\setup\Uninstaller;
 use wcf\system\style\StyleHandler;
 use wcf\system\WCF;
-use wcf\util\FileUtil;
 
 /**
  * Handles the whole uninstallation process.
index 1fdb709977fe335f0e55ef19faeed8687422bb0e..4536a08707f9f091b70aba8a3c4a0084712e820f 100644 (file)
@@ -1,14 +1,12 @@
 <?php
 namespace wcf\system\package;
-use wcf\data\package\installation\queue\PackageInstallationQueueEditor;
-use wcf\system\package\PackageUninstallationDispatcher;
 use wcf\system\WCF;
 
 /**
  * Creates a logical node-based uninstallation tree.
  * 
  * @author     Alexander Ebert
- * @copyright  2001-2012 WoltLab GmbH
+ * @copyright  2001-2013 WoltLab GmbH
  * @license    GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
  * @package    com.woltlab.wcf
  * @subpackage system.package
index 8d277eb9ad1221a06d8ef8d2c024c190d909f481..da2d26e4171cae7f6d2234f1f0f9d9c6a247dae9 100644 (file)
@@ -2,10 +2,8 @@
 namespace wcf\system\package\plugin;
 use wcf\data\option\Option;
 use wcf\data\option\OptionEditor;
-use wcf\system\application\ApplicationHandler;
 use wcf\system\exception\SystemException;
 use wcf\system\WCF;
-use wcf\util\StringUtil;
 
 /**
  * Installs, updates and deletes options.
index b3de7eae6f00f1c50972ea3a2eecaaa45ff3bb38..f62bd02e5baa9890354f6e5fe7a0e9fded9206a0 100644 (file)
@@ -2,7 +2,6 @@
 namespace wcf\system\package\plugin;
 use wcf\system\cache\builder\TemplateListenerCacheBuilder;
 use wcf\system\cache\builder\TemplateListenerCodeCacheBuilder;
-use wcf\system\cache\CacheHandler;
 use wcf\system\WCF;
 
 /**
index fa6e963e87d25eb811ffcfc8b1f81bdf0aa6875e..593103afd32e6ce581ea05e92709a74829f315f4 100644 (file)
@@ -4,15 +4,13 @@ use wcf\data\user\group\option\UserGroupOption;
 use wcf\data\user\group\option\UserGroupOptionEditor;
 use wcf\data\user\group\UserGroup;
 use wcf\data\user\group\UserGroupList;
-use wcf\system\exception\SystemException;
 use wcf\system\WCF;
-use wcf\util\StringUtil;
 
 /**
  * Installs, updates and deletes user group options.
  * 
  * @author     Benjamin Kunz
- * @copyright  2001-2012 WoltLab GmbH
+ * @copyright  2001-2013 WoltLab GmbH
  * @license    GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
  * @package    com.woltlab.wcf
  * @subpackage system.package.plugin
index 149759b3a77fb78b91fdf8e7e05f3233e64fa328..fc92fb15e0194dafb07fc066da696f5f481f9cef 100644 (file)
@@ -4,15 +4,13 @@ use wcf\data\user\option\category\UserOptionCategory;
 use wcf\data\user\option\category\UserOptionCategoryEditor;
 use wcf\data\user\option\UserOption;
 use wcf\data\user\option\UserOptionEditor;
-use wcf\system\exception\SystemException;
 use wcf\system\WCF;
-use wcf\util\StringUtil;
 
 /**
  * Installs, updates and deletes user options.
  * 
  * @author     Benjamin Kunz
- * @copyright  2001-2012 WoltLab GmbH
+ * @copyright  2001-2013 WoltLab GmbH
  * @license    GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
  * @package    com.woltlab.wcf
  * @subpackage system.package.plugin
index 32960270282cb075f7f344b315b5510fb9e255a6..c762dc0708a851d8373ed5e5cef5b340ff144240 100644 (file)
@@ -1,7 +1,6 @@
 <?php
 namespace wcf\system\style;
 use wcf\data\style\Style;
-use wcf\system\application\ApplicationHandler;
 use wcf\system\database\util\PreparedStatementConditionBuilder;
 use wcf\system\exception\SystemException;
 use wcf\system\Callback;
@@ -14,7 +13,7 @@ use wcf\util\StyleUtil;
  * Provides access to the LESS PHP compiler.
  * 
  * @author     Alexander Ebert
- * @copyright  2001-2011 WoltLab GmbH
+ * @copyright  2001-2013 WoltLab GmbH
  * @license    GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
  * @package    com.woltlab.wcf
  * @subpackage system.style
index aee339e8f5b8fbaafe4b15c3aa56902dd6fb9cd3..2c0fd8554954ecc8395c5b3635a376847c829bc4 100644 (file)
@@ -2,8 +2,6 @@
 namespace wcf\system\template\plugin;
 use wcf\system\exception\SystemException;
 use wcf\system\request\LinkHandler;
-use wcf\system\request\RequestHandler;
-use wcf\system\style\StyleHandler;
 use wcf\system\template\TemplateEngine;
 use wcf\system\WCF;
 use wcf\util\StringUtil;
@@ -22,7 +20,7 @@ use wcf\util\StringUtil;
  *     {pages page=8 pages=10 link='page-%d.html' assign='output' print=true}
  * 
  * @author     Marcel Werk
- * @copyright  2001-2012 WoltLab GmbH
+ * @copyright  2001-2013 WoltLab GmbH
  * @license    GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
  * @package    com.woltlab.wcf
  * @subpackage system.template.plugin
index 0789323e84d1361c8518c7c93457ee45dfd8a7cb..95e4aad30cb874b86ae1c5d74c8c4506e097a2ba 100644 (file)
@@ -1,7 +1,6 @@
 <?php
 namespace wcf\system\version;
 use wcf\data\object\type\ObjectTypeCache;
-use wcf\data\VersionableDatabaseObject;
 use wcf\system\cache\builder\VersionCacheBuilder;
 use wcf\system\SingletonFactory;