From fc9e20957d02530751cc712b01cddbb0ca680dbc Mon Sep 17 00:00:00 2001 From: szy Date: Fri, 14 Sep 2012 17:53:59 +0400 Subject: [PATCH] 0023327: There are identical sub-expressions to the left and to the right of the '&&' operator --- src/TObj/TObj_Model.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TObj/TObj_Model.cxx b/src/TObj/TObj_Model.cxx index bdb65c933b..998a397c7d 100755 --- a/src/TObj/TObj_Model.cxx +++ b/src/TObj/TObj_Model.cxx @@ -629,7 +629,7 @@ void TObj_Model::updateBackReferences (const Handle(TObj_Object)& theObject) if ( theObject.IsNull() ) return; Handle(TObj_ObjectIterator) aChildren = theObject->GetChildren(); - for(;aChildren->More() && aChildren->More(); aChildren->Next()) + for(;aChildren->More(); aChildren->Next()) { Handle(TObj_Object) aChild = aChildren->Value(); updateBackReferences( aChild );