소스 검색

Remove an unnecessary space

Takahiro 7 년 전
부모
커밋
99a7cb9fdf
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/textures/Texture.js

+ 1 - 1
src/textures/Texture.js

@@ -240,7 +240,7 @@ Texture.prototype = Object.assign( Object.create( EventDispatcher.prototype ), {
 					width: mipmap.width,
 					height: mipmap.height,
 					type: mipmap.data.constructor.name,
-					array:  Array.prototype.slice.call( mipmap.data )
+					array: Array.prototype.slice.call( mipmap.data )
 				} );
 
 			} else {