From cd6866c684ab1f597cbd13bc29eec06469eb1292 Mon Sep 17 00:00:00 2001 From: Rainer Klute Date: Wed, 11 Dec 2002 19:17:10 +0000 Subject: [PATCH] Support for ε to Unicode translation added (bug 15142). git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352934 13f79535-47bb-0310-9956-ffa450edef68 --- .../poi/hssf/usermodel/contrib/HSSFCellUtil.java | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/src/contrib/src/org/apache/poi/hssf/usermodel/contrib/HSSFCellUtil.java b/src/contrib/src/org/apache/poi/hssf/usermodel/contrib/HSSFCellUtil.java index 294fb4657..02353a426 100644 --- a/src/contrib/src/org/apache/poi/hssf/usermodel/contrib/HSSFCellUtil.java +++ b/src/contrib/src/org/apache/poi/hssf/usermodel/contrib/HSSFCellUtil.java @@ -281,12 +281,10 @@ public class HSSFCellUtil static { - unicodeMappings.put( "α", "\u03B1" ); - unicodeMappings.put( "γ", "\u03B3" ); - unicodeMappings.put( "θ", "\u03B8" ); + unicodeMappings.put( "α", "\u03B1" ); + unicodeMappings.put( "γ", "\u03B3" ); + unicodeMappings.put( "ε", "\u03B5" ); + unicodeMappings.put( "θ", "\u03B8" ); } } - - -