소스 검색

GLTFLoader: Clean up (#23633)

Don McCurdy 3 년 전
부모
커밋
5957f0b1ce
1개의 변경된 파일1개의 추가작업 그리고 9개의 파일을 삭제
  1. 1 9
      examples/jsm/loaders/GLTFLoader.js

+ 1 - 9
examples/jsm/loaders/GLTFLoader.js

@@ -2904,15 +2904,7 @@ class GLTFParser {
 
 		if ( this.sourceCache[ sourceIndex ] !== undefined ) {
 
-			return this.sourceCache[ sourceIndex ].then( function ( texture ) {
-
-				return texture.clone();
-
-			} ).catch( function ( error ) {
-
-				throw error;
-
-			} );
+			return this.sourceCache[ sourceIndex ].then( ( texture ) => texture.clone() );
 
 		}