Removed obsolete file
authorMarcel Werk <burntime@woltlab.com>
Sat, 16 Feb 2013 14:32:09 +0000 (15:32 +0100)
committerMarcel Werk <burntime@woltlab.com>
Sat, 16 Feb 2013 14:32:09 +0000 (15:32 +0100)
wcfsetup/install/files/lib/system/cronjob/CleanupListenerCronjob.class.php [deleted file]

diff --git a/wcfsetup/install/files/lib/system/cronjob/CleanupListenerCronjob.class.php b/wcfsetup/install/files/lib/system/cronjob/CleanupListenerCronjob.class.php
deleted file mode 100644 (file)
index c13dc05..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-<?php
-namespace wcf\system\cronjob;
-use wcf\data\cronjob\Cronjob;
-use wcf\system\cleanup\CleanupHandler;
-
-/**
- * Executes cleanup adapters.
- * 
- * @author     Alexander Ebert
- * @copyright  2001-2012 WoltLab GmbH
- * @license    GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
- * @package    com.woltlab.wcf
- * @subpackage system.cronjob
- * @category   Community Framework
- */
-class CleanupListenerCronjob implements ICronjob {
-       /**
-        * @see wcf\system\ICronjob::execute()
-        */
-       public function execute(Cronjob $cronjob) {
-               CleanupHandler::getInstance()->execute();
-       }
-}