From 80de9a1b6fbd2a443890f6805e05a3648ecc574c Mon Sep 17 00:00:00 2001
From: Matthieu Schaller <matthieu.schaller@durham.ac.uk>
Date: Mon, 18 Apr 2016 08:57:01 -0300
Subject: [PATCH] Removed out-dated confusing comments.

---
 src/space.c | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/src/space.c b/src/space.c
index 6d4c256d50..4a01b3b7a7 100644
--- a/src/space.c
+++ b/src/space.c
@@ -475,15 +475,11 @@ void space_rebuild(struct space *s, double cell_max, int verbose) {
 
   /* Exchange the strays, note that this potentially re-allocates
      the parts arrays. */
-  /* TODO: This function also exchanges gparts, but this is shorted-out
-     until they are fully implemented. */
   size_t nr_parts_exchanged = s->nr_parts - nr_parts;
   size_t nr_gparts_exchanged = s->nr_gparts - nr_gparts;
   engine_exchange_strays(s->e, nr_parts, &ind[nr_parts], &nr_parts_exchanged,
                          nr_gparts, &gind[nr_gparts], &nr_gparts_exchanged);
 
-  /* Add post-processing, i.e. re-linking/creating of gparts here. */
-
   /* Set the new particle counts. */
   s->nr_parts = nr_parts + nr_parts_exchanged;
   s->nr_gparts = nr_gparts + nr_gparts_exchanged;
-- 
GitLab