I have a paragraph para1 and a run, before remove the run, I first keep the run font by
Font originFont = run1.getFont();
and I check debug mode, the originFont.getName() return Times New Roman. but then I remove the run by
para1.removeChild(run1);
then I check the originFont.getName(), it change to Calibri, why?

