From 65a5bf08ce0ec7d479f7c891dc8d00b43dd8b388 Mon Sep 17 00:00:00 2001 From: richterm Date: Thu, 5 Jan 2012 10:58:35 +0000 Subject: [PATCH] commenting unused variable to fix compiler warning --- HLT/global/AliHLTGlobalPreprocessor.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/HLT/global/AliHLTGlobalPreprocessor.cxx b/HLT/global/AliHLTGlobalPreprocessor.cxx index a15563c3781..435fd2042a7 100644 --- a/HLT/global/AliHLTGlobalPreprocessor.cxx +++ b/HLT/global/AliHLTGlobalPreprocessor.cxx @@ -102,17 +102,17 @@ int AliHLTGlobalPreprocessor::ProcessStreamerInfo(TObject* object) } if (streamerinfos->GetEntriesFast()==0) return 0; - bool bStore=false; + //bool bStore=false; AliCDBEntry* entry = GetFromOCDB(fgkStreamerInfoType, fgkStreamerInfoName); TObjArray* clone=NULL; if (entry && entry->GetObject()) { TObject* cloneObj=entry->GetObject()->Clone(); if (cloneObj) clone=dynamic_cast(cloneObj); - bStore=AliHLTRootSchemaEvolutionComponent::MergeStreamerInfo(clone, streamerinfos)>0; + //bStore=AliHLTRootSchemaEvolutionComponent::MergeStreamerInfo(clone, streamerinfos)>0; } else { TObject* cloneObj=streamerinfos->Clone(); if (cloneObj) clone=dynamic_cast(cloneObj); - bStore=true; + //bStore=true; } if (clone) { -- 2.43.0