remove System.out.println

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1884084 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sayi 2020-12-04 05:01:34 +00:00
parent 3387c0a53b
commit 3cc510e069
1 changed files with 1 additions and 2 deletions

View File

@ -107,7 +107,6 @@ public class XWPFTableCell implements IBody, ICell {
}
if (o instanceof CTSdtRun) {
XWPFSDT c = new XWPFSDT((CTSdtRun) o, this);
System.out.println(c.getContent().getText());
bodyElements.add(c);
}
}
@ -156,7 +155,7 @@ public class XWPFTableCell implements IBody, ICell {
/**
* add a Paragraph to this TableCell
*
* @param p the paragaph which has to be added
* @param p the paragraph which has to be added
*/
public void addParagraph(XWPFParagraph p) {
paragraphs.add(p);