diff options
author | Jeremias Maerki <jeremias@apache.org> | 2007-11-03 10:52:29 +0000 |
---|---|---|
committer | Jeremias Maerki <jeremias@apache.org> | 2007-11-03 10:52:29 +0000 |
commit | 3e5157ee722a8dd2f5cf1e48182d92c0b06f5344 (patch) | |
tree | aa13385fd7f99799b324c1eff2181a2c6dcf9de7 /src/java/org/apache/fop/util/CharUtilities.java | |
parent | 281ac8bcab030f3cb9646f4eb3895f320a1abb6b (diff) | |
download | xmlgraphics-fop-3e5157ee722a8dd2f5cf1e48182d92c0b06f5344.tar.gz xmlgraphics-fop-3e5157ee722a8dd2f5cf1e48182d92c0b06f5344.zip |
Zero Word Joiner was missing in the constants.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@591584 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop/util/CharUtilities.java')
-rw-r--r-- | src/java/org/apache/fop/util/CharUtilities.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/java/org/apache/fop/util/CharUtilities.java b/src/java/org/apache/fop/util/CharUtilities.java index 5663dbb1e..bfcc90a64 100644 --- a/src/java/org/apache/fop/util/CharUtilities.java +++ b/src/java/org/apache/fop/util/CharUtilities.java @@ -62,6 +62,8 @@ public class CharUtilities { public static final char ZERO_WIDTH_SPACE = '\u200B'; /** word joiner */ public static final char WORD_JOINER = '\u2060'; + /** zero-width joiner */ + public static final char ZERO_WIDTH_JOINER = '\u200D'; /** zero-width no-break space (= byte order mark) */ public static final char ZERO_WIDTH_NOBREAK_SPACE = '\uFEFF'; /** soft hyphen */ |