From: richterm Date: Thu, 5 Jan 2012 10:58:35 +0000 (+0000) Subject: commenting unused variable to fix compiler warning X-Git-Url: http://git.uio.no/git/?a=commitdiff_plain;h=65a5bf08ce0ec7d479f7c891dc8d00b43dd8b388;p=u%2Fmrichter%2FAliRoot.git commenting unused variable to fix compiler warning --- 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) {