Browse Source

Add missing semicolons in SEA3DLZMA

Tristan Valcke 8 years ago
parent
commit
938f881ceb
1 changed files with 3 additions and 3 deletions
  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 ++ ];
 			return this.data[ this.position ++ ];
 
 
 		}
 		}
-	}
+	};
 
 
 	var outStream = {
 	var outStream = {
 		data: [],
 		data: [],
@@ -587,12 +587,12 @@ SEA3D.File.LZMAUncompress = function( data ) {
 			this.data[ this.position ++ ] = value;
 			this.data[ this.position ++ ] = value;
 
 
 		}
 		}
-	}
+	};
 
 
 	LZMA.decompressFile( inStream, outStream );
 	LZMA.decompressFile( inStream, outStream );
 
 
 	return new Uint8Array( outStream.data ).buffer;
 	return new Uint8Array( outStream.data ).buffer;
 
 
-}
+};
 
 
 SEA3D.File.setDecompressionEngine( 2, "lzma", SEA3D.File.LZMAUncompress );
 SEA3D.File.setDecompressionEngine( 2, "lzma", SEA3D.File.LZMAUncompress );