diff --git a/Src/Containers/FVector.hpp b/Src/Containers/FVector.hpp
index facac09fa3e5d00956c2b38d9e90ace2fe97429c..1b2affa2fe904b6fdb9706b2778a65750255c9d4 100644
--- a/Src/Containers/FVector.hpp
+++ b/Src/Containers/FVector.hpp
@@ -194,7 +194,6 @@ public:
 
         void gotoNext(){
             ++this->index;
-            Prefetch_Write(&this->vector->array[this->index + 1]);
         }
 
         bool hasNotFinished() const{
@@ -228,7 +227,6 @@ public:
 
         void gotoNext(){
             ++this->index;
-            Prefetch_Read(&this->vector->array[this->index + 1]);
         }
 
         bool hasNotFinished() const{