From: Andy Heninger Date: Thu, 21 Jun 2012 22:42:12 +0000 (+0000) Subject: ICU-6954 remove unused CharsetRecognizer field from CharsetMatch X-Git-Tag: milestone-59-0-1~3745 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f2e9f237f334f0db7d36b630680972103fb72730;p=icu ICU-6954 remove unused CharsetRecognizer field from CharsetMatch X-SVN-Rev: 31980 --- diff --git a/icu4j/main/classes/core/src/com/ibm/icu/text/CharsetMatch.java b/icu4j/main/classes/core/src/com/ibm/icu/text/CharsetMatch.java index 88ea6131760..264b4b5d443 100644 --- a/icu4j/main/classes/core/src/com/ibm/icu/text/CharsetMatch.java +++ b/icu4j/main/classes/core/src/com/ibm/icu/text/CharsetMatch.java @@ -189,7 +189,6 @@ public class CharsetMatch implements Comparable { * Constructor. Implementation internal */ CharsetMatch(CharsetDetector det, CharsetRecognizer rec, int conf) { - fRecognizer = rec; fConfidence = conf; // The references to the original application input data must be copied out @@ -210,7 +209,6 @@ public class CharsetMatch implements Comparable { * Constructor. Implementation internal */ CharsetMatch(CharsetDetector det, CharsetRecognizer rec, int conf, String csName, String lang) { - fRecognizer = rec; fConfidence = conf; // The references to the original application input data must be copied out @@ -232,7 +230,6 @@ public class CharsetMatch implements Comparable { // Private Data // private int fConfidence; - private CharsetRecognizer fRecognizer; private byte[] fRawInput = null; // Original, untouched input bytes. // If user gave us a byte array, this is it. private int fRawLength; // Length of data in fRawInput array.