]> source.dussan.org Git - poi.git/commitdiff
some javadoc issues
authorPJ Fanning <fanningpj@apache.org>
Wed, 20 Mar 2019 23:33:50 +0000 (23:33 +0000)
committerPJ Fanning <fanningpj@apache.org>
Wed, 20 Mar 2019 23:33:50 +0000 (23:33 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1855954 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/poi/hpsf/UnicodeString.java
src/scratchpad/src/org/apache/poi/hwpf/sprm/CharacterSprmUncompressor.java
src/scratchpad/src/org/apache/poi/hwpf/sprm/ParagraphSprmUncompressor.java

index 51f90184389ec4f494b7be1025d486c25ee53184..f6be7d3768632cf6739c413bcc8019cb059b9f1e 100644 (file)
@@ -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);
         }
index e382ffe09a3add0c32abd7522a77e101b9078dc9..f7ebeab350810df217154e70c42ee9eb4d9170ea 100644 (file)
@@ -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,
index 43a7c9a47c4816d3cfe15b0a20954f00e938c2ea..768ad5ffd294421896c65842df0c34210c74c0f8 100644 (file)
@@ -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)
   {