aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSayi <sayi@apache.org>2020-12-04 05:01:34 +0000
committerSayi <sayi@apache.org>2020-12-04 05:01:34 +0000
commit3cc510e06979338d2fe1f87ebdb25c9605727fb9 (patch)
treeec1f0270bc6ab3fc56c04d534056dc86788bdb9e /src
parent3387c0a53b826d26739c9e05efa0ebdb8983056c (diff)
downloadpoi-3cc510e06979338d2fe1f87ebdb25c9605727fb9.tar.gz
poi-3cc510e06979338d2fe1f87ebdb25c9605727fb9.zip
remove System.out.println
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1884084 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src')
-rw-r--r--src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFTableCell.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFTableCell.java b/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFTableCell.java
index 67407beae5..8490154cbf 100644
--- a/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFTableCell.java
+++ b/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFTableCell.java
@@ -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);