浏览代码

Curly braces changed to sit on the same line

Andrii Iudin 8 年之前
父节点
当前提交
5ebc7f8c40
共有 1 个文件被更改,包括 2 次插入4 次删除
  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,
 		    var firstLength = first.length,
 		        result = new Float32Array(firstLength + second.length);
 		        result = new Float32Array(firstLength + second.length);
 
 
@@ -543,8 +542,7 @@ Object.assign( THREE.VTKLoader.prototype, THREE.EventDispatcher.prototype, {
 		    return result;
 		    return result;
 		}
 		}
 
 
-		function Int32Concat(first, second)
-		{
+		function Int32Concat(first, second) {
 		    var firstLength = first.length,
 		    var firstLength = first.length,
 		        result = new Int32Array(firstLength + second.length);
 		        result = new Int32Array(firstLength + second.length);