From 9226cc6a45b0070961a6a38cd6b078a484b1b216 Mon Sep 17 00:00:00 2001 From: nilsen Date: Fri, 5 Oct 2001 14:47:08 +0000 Subject: [PATCH] Removed posible unreachable statement. DEC complains about that. --- ITS/AliITSsimulationSDD.cxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ITS/AliITSsimulationSDD.cxx b/ITS/AliITSsimulationSDD.cxx index 61be3095242..5dc1dc6a9e4 100644 --- a/ITS/AliITSsimulationSDD.cxx +++ b/ITS/AliITSsimulationSDD.cxx @@ -1086,8 +1086,7 @@ Int_t AliITSsimulationSDD::Convert8to10(Int_t signal) const { else return (256+((signal-192)<<3)+4); } // end if signal < 224 if (TMath::Odd(signal)) return (512+((signal-224)<<4)+7); - else return (512+((signal-224)<<4)+7); - return 0; + return (512+((signal-224)<<4)+7); } //______________________________________________________________________ AliITSMap* AliITSsimulationSDD::HitMap(Int_t i){ -- 2.39.3