protected void changeFile(VirtualFile file, final String newText) {
   try {
     if (newText != null) {
       VfsUtil.saveText(file, newText);
     }
     ((NewVirtualFile) file).setTimeStamp(file.getTimeStamp() + 10);
   } catch (IOException e) {
     throw new RuntimeException(e);
   }
 }