소스 검색

Remove async keyword

Popov72 5 년 전
부모
커밋
4f0942666f
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/Misc/KTX2/LiteTranscoder.ts

+ 1 - 1
src/Misc/KTX2/LiteTranscoder.ts

@@ -13,7 +13,7 @@ export class LiteTranscoder extends Transcoder {
     private _modulePromise: Promise<{ module: any }>;
     private _memoryManager: WASMMemoryManager;
 
-    protected async _loadModule(): Promise<{ module: any }> {
+    protected _loadModule(): Promise<{ module: any }> {
         if (this._modulePromise) {
             return this._modulePromise;
         }