diff --git a/Solver/dofManager.h b/Solver/dofManager.h
index 08b56f44afd7c679852860cee323ed9aff1669ea..b8142db1705e3cea8a71f4bf0b593051f8ad8f5f 100644
--- a/Solver/dofManager.h
+++ b/Solver/dofManager.h
@@ -34,8 +34,6 @@ class Dof{
     i1 = t % 10000;
     i2 = t / 10000;
   }
-  //inline static int createEntityForFullDg(const int ele_num, const int ver_num){return ele_num*100000+ver_num;} // Problem if the number of Vertex exceed 1e5 OK for a moment
-  //inline static void getTwoIntFromEntityFullDg(int t, int &i1, int &i2){i1 = t % 100000 ; i2 = t / 100000;}
 
   bool operator < (const Dof &other) const
   {