diff options
author | PJ Fanning <fanningpj@apache.org> | 2021-10-31 09:44:41 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2021-10-31 09:44:41 +0000 |
commit | 712fdd622623e4c4ca48453faeaaad557030fa3a (patch) | |
tree | 3f8b2b2f96a40e8b69a17cebbffa599ec26d1bba /poi/src | |
parent | a35532e9ea96ce09ad607671a33161d1c6d3ea5b (diff) | |
download | poi-712fdd622623e4c4ca48453faeaaad557030fa3a.tar.gz poi-712fdd622623e4c4ca48453faeaaad557030fa3a.zip |
javadoc
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1894642 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poi/src')
-rw-r--r-- | poi/src/main/java/org/apache/poi/hssf/record/common/UnicodeString.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/poi/src/main/java/org/apache/poi/hssf/record/common/UnicodeString.java b/poi/src/main/java/org/apache/poi/hssf/record/common/UnicodeString.java index caeeec0e9d..63c405aeca 100644 --- a/poi/src/main/java/org/apache/poi/hssf/record/common/UnicodeString.java +++ b/poi/src/main/java/org/apache/poi/hssf/record/common/UnicodeString.java @@ -41,7 +41,7 @@ import static org.apache.logging.log4j.util.Unbox.box; /** * Unicode String - just standard fields that are in several records. - * It is considered more desirable then repeating it in all of them.<p> + * It is considered more desirable than repeating it in all of them.<p> * This is often called a XLUnicodeRichExtendedString in MS documentation. */ public class UnicodeString implements Comparable<UnicodeString>, Duplicatable, GenericRecord { @@ -73,7 +73,7 @@ public class UnicodeString implements Comparable<UnicodeString>, Duplicatable, G /** * construct a unicode string record and fill its fields, ID is ignored - * @param in the RecordInputstream to read the record from + * @param in the RecordInputStream to read the record from */ public UnicodeString(RecordInputStream in) { field_1_charCount = in.readShort(); @@ -127,7 +127,7 @@ public class UnicodeString implements Comparable<UnicodeString>, Duplicatable, G } UnicodeString other = (UnicodeString) o; - //OK lets do this in stages to return a quickly, first check the actual string + //OK lets do this in stages to return quickly, first check the actual string if (field_1_charCount != other.field_1_charCount || field_2_optionflags != other.field_2_optionflags || !field_3_string.equals(other.field_3_string)) { |