You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by st...@apache.org on 2008/10/08 22:44:01 UTC

svn commit: r702985 - /hadoop/hbase/trunk/src/java/org/apache/hadoop/hbase/mapred/TableInputFormatBase.java

Author: stack
Date: Wed Oct  8 13:44:00 2008
New Revision: 702985

URL: http://svn.apache.org/viewvc?rev=702985&view=rev
Log:
Fix javadoc -- change code to pre

Modified:
    hadoop/hbase/trunk/src/java/org/apache/hadoop/hbase/mapred/TableInputFormatBase.java

Modified: hadoop/hbase/trunk/src/java/org/apache/hadoop/hbase/mapred/TableInputFormatBase.java
URL: http://svn.apache.org/viewvc/hadoop/hbase/trunk/src/java/org/apache/hadoop/hbase/mapred/TableInputFormatBase.java?rev=702985&r1=702984&r2=702985&view=diff
==============================================================================
--- hadoop/hbase/trunk/src/java/org/apache/hadoop/hbase/mapred/TableInputFormatBase.java (original)
+++ hadoop/hbase/trunk/src/java/org/apache/hadoop/hbase/mapred/TableInputFormatBase.java Wed Oct  8 13:44:00 2008
@@ -50,7 +50,7 @@
  * Subclasses may use other TableRecordReader implementations.
  * <p>
  * An example of a subclass:
- * <code>
+ * <pre>
  *   class ExampleTIF extends TableInputFormatBase implements JobConfigurable {
  *
  *     public void configure(JobConf job) {
@@ -70,7 +70,7 @@
  *     public void validateInput(JobConf job) throws IOException {
  *     }
  *  }
- * </code>
+ * </pre>
  */
 public abstract class TableInputFormatBase
 implements InputFormat<ImmutableBytesWritable, RowResult> {
@@ -334,4 +334,4 @@
   protected void setRowFilter(RowFilterInterface rowFilter) {
     this.rowFilter = rowFilter;
   }
-}
\ No newline at end of file
+}