Skip to content

Commit fbc28ae

Browse files
authored
src: Clean up. (#26763)
1 parent 18ae441 commit fbc28ae

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/textures/Source.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
import { ImageUtils } from '../extras/ImageUtils.js';
22
import * as MathUtils from '../math/MathUtils.js';
33

4-
let sourceId = 0;
4+
let _sourceId = 0;
55

66
class Source {
77

88
constructor( data = null ) {
99

1010
this.isSource = true;
1111

12-
Object.defineProperty( this, 'id', { value: sourceId ++ } );
12+
Object.defineProperty( this, 'id', { value: _sourceId ++ } );
1313

1414
this.uuid = MathUtils.generateUUID();
1515

0 commit comments

Comments
 (0)