Skip to content

Commit e8e5cc1

Browse files
committed
remove round brackets
1 parent a430f83 commit e8e5cc1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/PathTracingSceneGenerator.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ export class PathTracingSceneGenerator {
180180
let needsMaterialIndexUpdate = result.changeType !== NO_CHANGE || this._materialUuids === null || this._materialUuids.length !== length;
181181
if ( ! needsMaterialIndexUpdate ) {
182182

183-
for ( let i = 0, length = materials.length; ( i < length ); i ++ ) {
183+
for ( let i = 0, length = materials.length; i < length; i ++ ) {
184184

185185
const material = materials[ i ];
186186
if ( material.uuid !== this._materialUuids[ i ] ) {

0 commit comments

Comments
 (0)