You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pdfbox.apache.org by le...@apache.org on 2014/06/20 16:53:08 UTC

svn commit: r1604182 - in /pdfbox/branches/1.8/pdfbox/src/main/java/org/apache/pdfbox/util: ICU4JImpl.java TextNormalize.java

Author: lehmi
Date: Fri Jun 20 14:53:07 2014
New Revision: 1604182

URL: http://svn.apache.org/r1604182
Log:
PDFBOX-2118: mark TextNormalizer#makeLineLogicalOrder and ICU4JImpl as deprecated

Modified:
    pdfbox/branches/1.8/pdfbox/src/main/java/org/apache/pdfbox/util/ICU4JImpl.java
    pdfbox/branches/1.8/pdfbox/src/main/java/org/apache/pdfbox/util/TextNormalize.java

Modified: pdfbox/branches/1.8/pdfbox/src/main/java/org/apache/pdfbox/util/ICU4JImpl.java
URL: http://svn.apache.org/viewvc/pdfbox/branches/1.8/pdfbox/src/main/java/org/apache/pdfbox/util/ICU4JImpl.java?rev=1604182&r1=1604181&r2=1604182&view=diff
==============================================================================
--- pdfbox/branches/1.8/pdfbox/src/main/java/org/apache/pdfbox/util/ICU4JImpl.java (original)
+++ pdfbox/branches/1.8/pdfbox/src/main/java/org/apache/pdfbox/util/ICU4JImpl.java Fri Jun 20 14:53:07 2014
@@ -24,6 +24,8 @@ import com.ibm.icu.text.Normalizer;
  * will call this only if the ICU4J library exists in the classpath.
  * @author <a href="mailto:carrier@digital-evidence.org">Brian Carrier</a>
  * @version $Revision: 1.0 $
+ * 
+ * @deprecated will be removed in 2.0.0
  */
 public class ICU4JImpl 
 {

Modified: pdfbox/branches/1.8/pdfbox/src/main/java/org/apache/pdfbox/util/TextNormalize.java
URL: http://svn.apache.org/viewvc/pdfbox/branches/1.8/pdfbox/src/main/java/org/apache/pdfbox/util/TextNormalize.java?rev=1604182&r1=1604181&r2=1604182&view=diff
==============================================================================
--- pdfbox/branches/1.8/pdfbox/src/main/java/org/apache/pdfbox/util/TextNormalize.java (original)
+++ pdfbox/branches/1.8/pdfbox/src/main/java/org/apache/pdfbox/util/TextNormalize.java Fri Jun 20 14:53:07 2014
@@ -111,6 +111,8 @@ public class TextNormalize
      * @param str Presentation form of line to convert (i.e. left most char is first char)
      * @param isRtlDominant true if the PAGE has a dominant right to left ordering
      * @return Logical form of string (or original string if ICU4J library is not on classpath)
+     * 
+     * @deprecated isn't used anymore
      */
     public String makeLineLogicalOrder(String str, boolean isRtlDominant)
     {