Pārlūkot izejas kodu

Curly braces changed to sit on the same line

Andrii Iudin 8 gadi atpakaļ
vecāks
revīzija
5ebc7f8c40
1 mainītis faili ar 2 papildinājumiem un 4 dzēšanām
  1. 2 4
      examples/js/loaders/VTKLoader.js

+ 2 - 4
examples/js/loaders/VTKLoader.js

@@ -532,8 +532,7 @@ Object.assign( THREE.VTKLoader.prototype, THREE.EventDispatcher.prototype, {
 
 		}
 
-		function Float32Concat(first, second)
-		{
+		function Float32Concat(first, second) {
 		    var firstLength = first.length,
 		        result = new Float32Array(firstLength + second.length);
 
@@ -543,8 +542,7 @@ Object.assign( THREE.VTKLoader.prototype, THREE.EventDispatcher.prototype, {
 		    return result;
 		}
 
-		function Int32Concat(first, second)
-		{
+		function Int32Concat(first, second) {
 		    var firstLength = first.length,
 		        result = new Int32Array(firstLength + second.length);