public void reverse() {
   try {
     storage.reverse();
   } catch (IOException e) {
     e.printStackTrace();
   }
 }
 public void commit() {
   storage.commit();
 }