From 5ebc7f8c40a363e2ccfc4a30ef80c727378408d8 Mon Sep 17 00:00:00 2001 From: Andrii Iudin Date: Wed, 22 Mar 2017 16:31:20 +0000 Subject: [PATCH] Curly braces changed to sit on the same line --- examples/js/loaders/VTKLoader.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/examples/js/loaders/VTKLoader.js b/examples/js/loaders/VTKLoader.js index 86fde8c535..332c727c53 100644 --- a/examples/js/loaders/VTKLoader.js +++ b/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); -- GitLab