diff --git a/Reconstruction/EventShapes/EventShapeAthenaPool/cmt/requirements b/Reconstruction/EventShapes/EventShapeAthenaPool/cmt/requirements
index 94dc65d7282b03fabe127fce6da55ccad9efb5d2..8145de4beb114bf05e0a08816ce3b6a89807f533 100755
--- a/Reconstruction/EventShapes/EventShapeAthenaPool/cmt/requirements
+++ b/Reconstruction/EventShapes/EventShapeAthenaPool/cmt/requirements
@@ -17,4 +17,3 @@ branches EventShapeAthenaPool src
 
 apply_pattern poolcnv typesWithNamespace=$(eventShapeAthenaPool_poolCnvTypes) \
    files="-s=${EventShapeEvent_root}/EventShapeEvent EventShapeStore.h"
-
diff --git a/Reconstruction/EventShapes/EventShapeAthenaPool/src/EventShapeStoreCnv.cxx b/Reconstruction/EventShapes/EventShapeAthenaPool/src/EventShapeStoreCnv.cxx
index af814f75830da57e344fc7ce208d0d6f35d64ab2..16898ba5348c0dcea04129041b51a87d66cec15b 100644
--- a/Reconstruction/EventShapes/EventShapeAthenaPool/src/EventShapeStoreCnv.cxx
+++ b/Reconstruction/EventShapes/EventShapeAthenaPool/src/EventShapeStoreCnv.cxx
@@ -9,8 +9,8 @@
 
 EventShapeStore_PERS* EventShapeStoreCnv::createPersistent(EventShapeStore* transObj)
 {
-  MsgStream report( messageService(), "EventShapeStoreConverter" );
-  report << MSG::INFO << "Writing EventShapeStore_p1" << endreq; 
+  MsgStream report( msgSvc(), "EventShapeStoreConverter" );
+  report << MSG::INFO << "Writing EventShapeStore_p1" << endmsg; 
   EventShapeStoreCnv_p1   TPconverter;
   EventShapeStore_PERS *persObj = TPconverter.createPersistent( transObj, report );
   
@@ -25,8 +25,8 @@ EventShapeStore* EventShapeStoreCnv::createTransient()
       EventShapeStoreCnv_p1   TPconverter;
       // using auto_ptr ensures deletion of the persistent object
       std::auto_ptr<EventShapeStore_p1> shapestore( poolReadObject< EventShapeStore_p1 >() );
-      MsgStream report( messageService(), "EventShapeStoreCnv" );
-      report << MSG::INFO << "Reading EventShapeStore_p1" << endreq; 
+      MsgStream report( msgSvc(), "EventShapeStoreCnv" );
+      report << MSG::INFO << "Reading EventShapeStore_p1" << endmsg; 
       return TPconverter.createTransient( shapestore.get(), report );
     }
   throw std::runtime_error("Unsupported persistent version of EventShapeStore");