Removed trailing whitespace from all *.?pp files
[supertux.git] / src / supertux / object_factory.cpp
index 2165970..2c1fd84 100644 (file)
@@ -283,7 +283,7 @@ ObjectFactory::create(const std::string& name, const Reader& reader)
 {
   Factories::iterator i = factories.find(name);
 
-  if (i == factories.end()) 
+  if (i == factories.end())
   {
     std::stringstream msg;
     msg << "No factory for object '" << name << "' found.";
@@ -306,7 +306,7 @@ ObjectFactory::create(const std::string& name, const Vector& pos, const Directio
 
   lisp::Parser parser;
   const lisp::Lisp* lisp = parser.parse(lisptext, "create_object");
-  
+
   GameObject* object = create(name, *(lisp->get_car()));
   return object;
 }