diff src/Grids/tensor_grid.jl @ 1337:f265799bc2b6 refactor/grids

Remove some comments
author Jonatan Werpers <jonatan@werpers.com>
date Thu, 04 May 2023 08:38:48 +0200
parents ed3ea0630825
children 5604676d8426
line wrap: on
line diff
--- a/src/Grids/tensor_grid.jl	Wed May 03 15:50:08 2023 +0200
+++ b/src/Grids/tensor_grid.jl	Thu May 04 08:38:48 2023 +0200
@@ -8,7 +8,6 @@
     grids::GT
 
     function TensorGrid(gs...)
-        # T = combined_coordinate_vector_type(eltype.(gs)...)
         T = mapreduce(eltype, combined_coordinate_vector_type, gs)
         D = sum(ndims, gs)
 
@@ -92,5 +91,4 @@
 
 function combine_coordinates(coords...)
     return mapreduce(SVector, vcat, coords)
-    # return SVector(coords...)
 end