vgritsenko    2003/08/12 20:18:45

  Modified:    java/src/org/apache/xindice/core/meta/inline
                        InlineMetaService.java
  Log:
  fix javadoc error
  
  Revision  Changes    Path
  1.6       +7 -5      
xml-xindice/java/src/org/apache/xindice/core/meta/inline/InlineMetaService.java
  
  Index: InlineMetaService.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xindice/java/src/org/apache/xindice/core/meta/inline/InlineMetaService.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- InlineMetaService.java    7 Aug 2003 20:13:22 -0000       1.5
  +++ InlineMetaService.java    13 Aug 2003 03:18:45 -0000      1.6
  @@ -152,7 +152,7 @@
        * disassemble it into its component metadata and entry data
        * components.
        *
  -     * @param Value containing raw header + entry data from the backing store
  +     * @param rawValue containing raw header + entry data from the backing 
store
        * @return DatabaseEntry containing metadata in an 
<code>InlineMetaMap</code>
        *         and entry data in a <code>Value</code>.
        * @throws InlineMetaException if missing the reader for the header, or 
if
  @@ -169,7 +169,9 @@
               log.debug("readDatabaseEntry: rawData: length=" + rawData.length 
+ " byte 0: " + rawData[0] + " byte 1: " + rawData[1]);
           }
   
  -/* Read the header. */
  +        /*
  +         * Read the header.
  +         */
   
           int version = rawData[1];
           if (!haveReaderForVersion(version)) {
  @@ -185,7 +187,7 @@
               log.debug("readDatabaseEntry: map: type=" + map.get("type"));
           }
   
  -/*
  +        /*
            * Exract the data into a Value object.
            */
   
  
  
  

Reply via email to