浏览代码

Add missing semicolons in SEA3DLZMA

Tristan Valcke 8 年之前
父节点
当前提交
938f881ceb
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3 3
      examples/js/loaders/sea3d/SEA3DLZMA.js

+ 3 - 3
examples/js/loaders/sea3d/SEA3DLZMA.js

@@ -577,7 +577,7 @@ SEA3D.File.LZMAUncompress = function( data ) {
 			return this.data[ this.position ++ ];
 
 		}
-	}
+	};
 
 	var outStream = {
 		data: [],
@@ -587,12 +587,12 @@ SEA3D.File.LZMAUncompress = function( data ) {
 			this.data[ this.position ++ ] = value;
 
 		}
-	}
+	};
 
 	LZMA.decompressFile( inStream, outStream );
 
 	return new Uint8Array( outStream.data ).buffer;
 
-}
+};
 
 SEA3D.File.setDecompressionEngine( 2, "lzma", SEA3D.File.LZMAUncompress );