From 1801575c41f5fd1658117cda1624226383a30c22 Mon Sep 17 00:00:00 2001 From: Andrii Iudin Date: Thu, 23 Mar 2017 10:18:30 +0000 Subject: [PATCH] Curly bracket changed to sit on the same line :) --- examples/js/loaders/VTKLoader.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/examples/js/loaders/VTKLoader.js b/examples/js/loaders/VTKLoader.js index 332c727c53..a17bd2a753 100644 --- a/examples/js/loaders/VTKLoader.js +++ b/examples/js/loaders/VTKLoader.js @@ -919,8 +919,7 @@ Object.assign( THREE.VTKLoader.prototype, THREE.EventDispatcher.prototype, { while ( dataArrayIndex < numberOfDataArrays ) { // Parse the DataArray - if ( ('#text' in arr[ dataArrayIndex ]) && (arr[ dataArrayIndex ][ '#text' ].length > 0) ) - { + if ( ('#text' in arr[ dataArrayIndex ]) && (arr[ dataArrayIndex ][ '#text' ].length > 0) ) { arr[ dataArrayIndex ].text = parseDataArray( arr[ dataArrayIndex ], compressed ); } dataArrayIndex ++; -- GitLab