You are viewing a plain text version of this content. The canonical link for it is here.
Posted to hdfs-commits@hadoop.apache.org by da...@apache.org on 2012/06/25 17:28:11 UTC

svn commit: r1353592 - in /hadoop/common/trunk/hadoop-hdfs-project: hadoop-hdfs-raid/src/main/java/org/apache/hadoop/raid/ hadoop-hdfs/

Author: daryn
Date: Mon Jun 25 15:28:09 2012
New Revision: 1353592

URL: http://svn.apache.org/viewvc?rev=1353592&view=rev
Log:
HDFS-3550. Fix raid javadoc warnings. (Jason Lowe via daryn)

Modified:
    hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs-raid/src/main/java/org/apache/hadoop/raid/Decoder.java
    hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs-raid/src/main/java/org/apache/hadoop/raid/DistRaidNode.java
    hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs-raid/src/main/java/org/apache/hadoop/raid/Encoder.java
    hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs-raid/src/main/java/org/apache/hadoop/raid/RaidConfigurationException.java
    hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt

Modified: hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs-raid/src/main/java/org/apache/hadoop/raid/Decoder.java
URL: http://svn.apache.org/viewvc/hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs-raid/src/main/java/org/apache/hadoop/raid/Decoder.java?rev=1353592&r1=1353591&r2=1353592&view=diff
==============================================================================
--- hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs-raid/src/main/java/org/apache/hadoop/raid/Decoder.java (original)
+++ hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs-raid/src/main/java/org/apache/hadoop/raid/Decoder.java Mon Jun 25 15:28:09 2012
@@ -166,9 +166,9 @@ public abstract class Decoder {
    *
    * @param srcFs The filesystem containing the source file.
    * @param srcPath The damaged source file.
-   * @param parityPath The filesystem containing the parity file. This could be
+   * @param parityFs The filesystem containing the parity file. This could be
    *        different from fs in case the parity file is part of a HAR archive.
-   * @param parityFile The parity file.
+   * @param parityPath The parity file.
    * @param blockSize The block size of the file.
    * @param blockOffset Known location of error in the source file. There could
    *        be additional errors in the source file that are discovered during

Modified: hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs-raid/src/main/java/org/apache/hadoop/raid/DistRaidNode.java
URL: http://svn.apache.org/viewvc/hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs-raid/src/main/java/org/apache/hadoop/raid/DistRaidNode.java?rev=1353592&r1=1353591&r2=1353592&view=diff
==============================================================================
--- hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs-raid/src/main/java/org/apache/hadoop/raid/DistRaidNode.java (original)
+++ hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs-raid/src/main/java/org/apache/hadoop/raid/DistRaidNode.java Mon Jun 25 15:28:09 2012
@@ -52,7 +52,7 @@ public class DistRaidNode extends RaidNo
   }
 
   /**
-   * {@inheritDocs}
+   * {@inheritDoc}
    */
   @Override
   public void join() {
@@ -65,7 +65,7 @@ public class DistRaidNode extends RaidNo
   }
   
   /**
-   * {@inheritDocs}
+   * {@inheritDoc}
    */
   @Override
   public void stop() {
@@ -79,7 +79,7 @@ public class DistRaidNode extends RaidNo
 
 
   /**
-   * {@inheritDocs}
+   * {@inheritDoc}
    */
   @Override
   void raidFiles(PolicyInfo info, List<FileStatus> paths) throws IOException {
@@ -95,7 +95,7 @@ public class DistRaidNode extends RaidNo
   }
 
   /**
-   * {@inheritDocs}
+   * {@inheritDoc}
    */
   @Override
   int getRunningJobsForPolicy(String policyName) {

Modified: hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs-raid/src/main/java/org/apache/hadoop/raid/Encoder.java
URL: http://svn.apache.org/viewvc/hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs-raid/src/main/java/org/apache/hadoop/raid/Encoder.java?rev=1353592&r1=1353591&r2=1353592&view=diff
==============================================================================
--- hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs-raid/src/main/java/org/apache/hadoop/raid/Encoder.java (original)
+++ hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs-raid/src/main/java/org/apache/hadoop/raid/Encoder.java Mon Jun 25 15:28:09 2012
@@ -331,7 +331,6 @@ public abstract class Encoder {
    * The implementation of generating parity data for a stripe.
    *
    * @param blocks The streams to blocks in the stripe.
-   * @param srcFile The source file.
    * @param stripeStartOffset The start offset of the stripe
    * @param blockSize The maximum size of a block.
    * @param outs output streams to the parity blocks.

Modified: hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs-raid/src/main/java/org/apache/hadoop/raid/RaidConfigurationException.java
URL: http://svn.apache.org/viewvc/hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs-raid/src/main/java/org/apache/hadoop/raid/RaidConfigurationException.java?rev=1353592&r1=1353591&r2=1353592&view=diff
==============================================================================
--- hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs-raid/src/main/java/org/apache/hadoop/raid/RaidConfigurationException.java (original)
+++ hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs-raid/src/main/java/org/apache/hadoop/raid/RaidConfigurationException.java Mon Jun 25 15:28:09 2012
@@ -19,7 +19,7 @@
 package org.apache.hadoop.raid;
 
 /**
- * Thrown when the config file for {@link CronNode} is malformed.  
+ * Thrown when the config file for {@link RaidNode} is malformed.
  */
 public class RaidConfigurationException extends Exception {
   private static final long serialVersionUID = 4046516718965587999L;

Modified: hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt
URL: http://svn.apache.org/viewvc/hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt?rev=1353592&r1=1353591&r2=1353592&view=diff
==============================================================================
--- hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt (original)
+++ hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt Mon Jun 25 15:28:09 2012
@@ -154,6 +154,8 @@ Trunk (unreleased changes)
     HDFS-3462. TestDFSClientRetries.busyTest() should restore default
     xceiver count in the config. (Madhukara Phatak via harsh)
 
+    HDFS-3550. Fix raid javadoc warnings. (Jason Lowe via daryn)
+
 Branch-2 ( Unreleased changes )
  
   INCOMPATIBLE CHANGES