You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by fa...@apache.org on 2019/03/20 23:33:51 UTC

svn commit: r1855954 - in /poi/trunk/src: java/org/apache/poi/hpsf/UnicodeString.java scratchpad/src/org/apache/poi/hwpf/sprm/CharacterSprmUncompressor.java scratchpad/src/org/apache/poi/hwpf/sprm/ParagraphSprmUncompressor.java

Author: fanningpj
Date: Wed Mar 20 23:33:50 2019
New Revision: 1855954

URL: http://svn.apache.org/viewvc?rev=1855954&view=rev
Log:
some javadoc issues

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

Modified: poi/trunk/src/java/org/apache/poi/hpsf/UnicodeString.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hpsf/UnicodeString.java?rev=1855954&r1=1855953&r2=1855954&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hpsf/UnicodeString.java (original)
+++ poi/trunk/src/java/org/apache/poi/hpsf/UnicodeString.java Wed Mar 20 23:33:50 2019
@@ -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);
         }

Modified: poi/trunk/src/scratchpad/src/org/apache/poi/hwpf/sprm/CharacterSprmUncompressor.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/scratchpad/src/org/apache/poi/hwpf/sprm/CharacterSprmUncompressor.java?rev=1855954&r1=1855953&r2=1855954&view=diff
==============================================================================
--- poi/trunk/src/scratchpad/src/org/apache/poi/hwpf/sprm/CharacterSprmUncompressor.java (original)
+++ poi/trunk/src/scratchpad/src/org/apache/poi/hwpf/sprm/CharacterSprmUncompressor.java Wed Mar 20 23:33:50 2019
@@ -153,13 +153,7 @@ public final class CharacterSprmUncompre
    *
    * @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,

Modified: poi/trunk/src/scratchpad/src/org/apache/poi/hwpf/sprm/ParagraphSprmUncompressor.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/scratchpad/src/org/apache/poi/hwpf/sprm/ParagraphSprmUncompressor.java?rev=1855954&r1=1855953&r2=1855954&view=diff
==============================================================================
--- poi/trunk/src/scratchpad/src/org/apache/poi/hwpf/sprm/ParagraphSprmUncompressor.java (original)
+++ poi/trunk/src/scratchpad/src/org/apache/poi/hwpf/sprm/ParagraphSprmUncompressor.java Wed Mar 20 23:33:50 2019
@@ -92,12 +92,7 @@ public final class ParagraphSprmUncompre
    * 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)
   {



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org