diff --git a/module/VuDL/Module.php b/module/VuDL/Module.php
index 6cb8dbad4b22f300b2e9923bef58a395c795fd49..d6d52738d2c2cd3f1a6c54261d205aebda79953d 100644
--- a/module/VuDL/Module.php
+++ b/module/VuDL/Module.php
@@ -26,8 +26,6 @@
  * @link     https://github.com/dmj/vf2-proxy
  */
 namespace VuDL;
-use Zend\ModuleManager\ModuleManager,
-    Zend\Mvc\MvcEvent;
 
 /**
  * VuDL interface module.
diff --git a/module/VuFind/Module.php b/module/VuFind/Module.php
index aeaab18c0b63a944eb947052963b826308582b47..a3353bc35840726ec23c6ea8818286105b0f5a51 100644
--- a/module/VuFind/Module.php
+++ b/module/VuFind/Module.php
@@ -26,8 +26,7 @@
  * @link     http://vufind.org
  */
 namespace VuFind;
-use Zend\ModuleManager\ModuleManager,
-    Zend\Mvc\MvcEvent;
+use Zend\Mvc\MvcEvent;
 
 /**
  * ZF2 module definition for the VuFind application
diff --git a/module/VuFindConsole/Module.php b/module/VuFindConsole/Module.php
index 792a04ada4b79e6f37abd3d3dde08c1211fc23b3..586a87214515209abf6b49fcd85b28be9d483639 100644
--- a/module/VuFindConsole/Module.php
+++ b/module/VuFindConsole/Module.php
@@ -26,8 +26,6 @@
  * @link     https://github.com/dmj/vf2-proxy
  */
 namespace VuFindConsole;
-use VuFindConsole\Mvc\Router\ConsoleRouter,
-    Zend\ModuleManager\ModuleManager, Zend\Mvc\MvcEvent;
 
 /**
  * ZF2 module definition for the VuFind console module
@@ -65,26 +63,4 @@ class Module
             ),
         );
     }
-
-    /**
-     * Initialize the module
-     *
-     * @param ModuleManager $m Module manager
-     *
-     * @return void
-     */
-    public function init(ModuleManager $m)
-    {
-    }
-
-    /**
-     * Bootstrap the module
-     *
-     * @param MvcEvent $e Event
-     *
-     * @return void
-     */
-    public function onBootstrap(MvcEvent $e)
-    {
-    }
 }