diff --git a/Post/PViewDataIO.cpp b/Post/PViewDataIO.cpp
index bff69ef56ce06284addc9c7269d41546a2449ad5..16276972130d0a3d6832993d1f12d351f029f45d 100644
--- a/Post/PViewDataIO.cpp
+++ b/Post/PViewDataIO.cpp
@@ -229,8 +229,6 @@ bool PViewData::fromVector(const std::vector<std::vector<double> > &vec)
         for(int nod = 0; nod < getNumNodes(step, ent, ele); nod++){
           double x, y, z;
           int tag = getNode(step, ent, ele, nod, x, y, z);
-          if(tag) continue; // node has already been modified
-          tagNode(step, ent, ele, nod, 1);
           for(int comp = 0; comp < getNumComponents(step, ent, ele); comp++){
             if(i < (int)vec[step].size()){
               setValue(step, ent, ele, nod, comp, vec[step][i++]);