From f9a4181480c74cd326f86566c2e98ac7588419a7 Mon Sep 17 00:00:00 2001 From: Josh Micich Date: Thu, 15 Jan 2009 23:13:54 +0000 Subject: [PATCH] Fixed "warning: unmappable character for encoding UTF8" (changed apostrophe char 213 to 39) git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@734850 13f79535-47bb-0310-9956-ffa450edef68 --- .../java/org/apache/poi/xwpf/usermodel/BreakClear.java | 2 +- src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFRun.java | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/ooxml/java/org/apache/poi/xwpf/usermodel/BreakClear.java b/src/ooxml/java/org/apache/poi/xwpf/usermodel/BreakClear.java index ef66541bd3..ec107931bc 100755 --- a/src/ooxml/java/org/apache/poi/xwpf/usermodel/BreakClear.java +++ b/src/ooxml/java/org/apache/poi/xwpf/usermodel/BreakClear.java @@ -21,7 +21,7 @@ import java.util.Map; /** * Specifies the set of possible restart locations which may be used as to - * determine the next available line when a breakÕs type attribute has a value + * determine the next available line when a break's type attribute has a value * of textWrapping. * * @author Gisella Bronzetti diff --git a/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFRun.java b/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFRun.java index 60ebac5c87..3c9e9c2c52 100755 --- a/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFRun.java +++ b/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFRun.java @@ -406,7 +406,7 @@ public class XWPFRun { * content. * A break is a special character which is used to override the * normal line breaking that would be performed based on the normal layout - * of the documentÕs contents. + * of the document's contents. * @see addCarriageReturn() */ public void addBreak() { @@ -418,7 +418,7 @@ public class XWPFRun { * content. * A break is a special character which is used to override the * normal line breaking that would be performed based on the normal layout - * of the documentÕs contents. + * of the document's contents. *

* The behavior of this break character (the * location where text shall be restarted after this break) shall be @@ -436,7 +436,7 @@ public class XWPFRun { * Specifies that a break shall be placed at the current location in the run * content. A break is a special character which is used to override the * normal line breaking that would be performed based on the normal layout - * of the documentÕs contents. + * of the document's contents. *

* The behavior of this break character (the * location where text shall be restarted after this break) shall be -- 2.39.5