@@ -155,7 +155,6 @@ public virtual void Step(Box2dMeshDrawer meshDrawer)
155155 m_maxProfile . pairs = MathF . Max ( m_maxProfile . pairs , p . pairs ) ;
156156 m_maxProfile . collide = MathF . Max ( m_maxProfile . collide , p . collide ) ;
157157 m_maxProfile . solve = MathF . Max ( m_maxProfile . solve , p . solve ) ;
158- m_maxProfile . mergeIslands = MathF . Max ( m_maxProfile . mergeIslands , p . mergeIslands ) ;
159158 m_maxProfile . prepareStages = MathF . Max ( m_maxProfile . prepareStages , p . prepareStages ) ;
160159 m_maxProfile . solveConstraints = MathF . Max ( m_maxProfile . solveConstraints , p . solveConstraints ) ;
161160 m_maxProfile . prepareConstraints = MathF . Max ( m_maxProfile . prepareConstraints , p . prepareConstraints ) ;
@@ -179,7 +178,6 @@ public virtual void Step(Box2dMeshDrawer meshDrawer)
179178 m_totalProfile . pairs += p . pairs ;
180179 m_totalProfile . collide += p . collide ;
181180 m_totalProfile . solve += p . solve ;
182- m_totalProfile . mergeIslands += p . mergeIslands ;
183181 m_totalProfile . prepareStages += p . prepareStages ;
184182 m_totalProfile . solveConstraints += p . solveConstraints ;
185183 m_totalProfile . prepareConstraints += p . prepareConstraints ;
@@ -212,7 +210,6 @@ public virtual void Step(Box2dMeshDrawer meshDrawer)
212210 aveProfile . pairs = scale * m_totalProfile . pairs ;
213211 aveProfile . collide = scale * m_totalProfile . collide ;
214212 aveProfile . solve = scale * m_totalProfile . solve ;
215- aveProfile . mergeIslands = scale * m_totalProfile . mergeIslands ;
216213 aveProfile . prepareStages = scale * m_totalProfile . prepareStages ;
217214 aveProfile . solveConstraints = scale * m_totalProfile . solveConstraints ;
218215 aveProfile . prepareConstraints = scale * m_totalProfile . prepareConstraints ;
0 commit comments