Parcourir la source

Remove async keyword

Popov72 il y a 5 ans
Parent
commit
4f0942666f
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  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;
         }