Author: fanningpj
Date: Sun Oct 31 09:44:41 2021
New Revision: 1894642
URL: http://svn.apache.org/viewvc?rev=1894642&view=rev
Log:
javadoc
Modified:
poi/trunk/poi/src/main/java/org/apache/poi/hssf/record/common/UnicodeString.java
Modified:
poi/trunk/poi/src/main/java/org/apache/poi/hssf/record/common/UnicodeString.java
URL:
http://svn.apache.org/viewvc/poi/trunk/poi/src/main/java/org/apache/poi/hssf/record/common/UnicodeString.java?rev=1894642&r1=1894641&r2=1894642&view=diff
==============================================================================
---
poi/trunk/poi/src/main/java/org/apache/poi/hssf/record/common/UnicodeString.java
(original)
+++
poi/trunk/poi/src/main/java/org/apache/poi/hssf/record/common/UnicodeString.java
Sun Oct 31 09:44:41 2021
@@ -41,7 +41,7 @@ import static org.apache.logging.log4j.u
/**
* 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 Co
/**
* 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 Co
}
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)) {
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]