mirror of https://github.com/apache/poi.git
some javadoc issues
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1855954 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
cb9d33d53d
commit
895b251367
|
@ -78,7 +78,7 @@ public class UnicodeString {
|
|||
final int terminator = result.indexOf( '\0' );
|
||||
if ( terminator == -1 ) {
|
||||
String msg =
|
||||
"String terminator (\\0) for UnicodeString property value not found."+
|
||||
"String terminator (\\0) for UnicodeString property value not found. " +
|
||||
"Continue without trimming and hope for the best.";
|
||||
LOG.log(POILogger.WARN, msg);
|
||||
return result;
|
||||
|
@ -86,7 +86,7 @@ public class UnicodeString {
|
|||
|
||||
if ( terminator != result.length() - 1 ) {
|
||||
String msg =
|
||||
"String terminator (\\0) for UnicodeString property value occured before the end of string. "+
|
||||
"String terminator (\\0) for UnicodeString property value occured before the end of string. " +
|
||||
"Trimming and hope for the best.";
|
||||
LOG.log(POILogger.WARN, msg);
|
||||
}
|
||||
|
|
|
@ -153,13 +153,7 @@ public final class CharacterSprmUncompressor extends SprmUncompressor
|
|||
*
|
||||
* @param oldCHP The base CharacterProperties.
|
||||
* @param newCHP The current CharacterProperties.
|
||||
* @param operand The operand defined by the sprm (See Word file format spec)
|
||||
* @param param The parameter defined by the sprm (See Word file format spec)
|
||||
* @param varParam The variable length parameter defined by the sprm. (See
|
||||
* Word file format spec)
|
||||
* @param grpprl The entire chpx that this operation is a part of.
|
||||
* @param offset The offset in the grpprl of the next sprm
|
||||
* @param styleSheet The StyleSheet for this document.
|
||||
* @param sprm an SPRM opearation
|
||||
*/
|
||||
static void unCompressCHPOperation (CharacterProperties oldCHP,
|
||||
CharacterProperties newCHP,
|
||||
|
|
|
@ -92,12 +92,7 @@ public final class ParagraphSprmUncompressor
|
|||
* from a papx.
|
||||
*
|
||||
* @param newPAP The ParagraphProperties object to perform the operation on.
|
||||
* @param operand The operand that defines the operation.
|
||||
* @param param The operation's parameter.
|
||||
* @param varParam The operation's variable length parameter.
|
||||
* @param grpprl The original papx.
|
||||
* @param offset The current offset in the papx.
|
||||
* @param spra A part of the sprm that defined this operation.
|
||||
* @param sprm sn SPRM operation.
|
||||
*/
|
||||
static void unCompressPAPOperation (ParagraphProperties newPAP, SprmOperation sprm)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue