diff --git a/alib2cli/src/command/EOTCommand.h b/alib2cli/src/command/EOTCommand.h
index fb72fc2171578f7914874ed47f72645bd80464fb..0c206fd80cd48641f462e075e160fb941c4d6c88 100644
--- a/alib2cli/src/command/EOTCommand.h
+++ b/alib2cli/src/command/EOTCommand.h
@@ -3,16 +3,11 @@
 
 #include <command/Command.h>
 #include <environment/Environment.h>
-#include <ast/Statement.h>
 
 namespace cli {
 
 class EOTCommand : public Command {
-	std::shared_ptr < Statement > m_command;
-
 public:
-	EOTCommand ( ) { }
-
 	CommandResult run ( Environment & /* environment */ ) const override {
 		return CommandResult::EOT;
 	}