Prep. for RC -- fix javadoc warnings
git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@799122 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
4267838a0c
commit
47b898d037
|
@ -18,7 +18,7 @@
|
|||
-->
|
||||
|
||||
<project name="hbase" default="jar">
|
||||
<property name="version" value="0.20.0-dev"/>
|
||||
<property name="version" value="0.20.0"/>
|
||||
<property name="Name" value="HBase"/>
|
||||
<property name="final.name" value="hbase-${version}"/>
|
||||
<property name="year" value="2009"/>
|
||||
|
@ -422,6 +422,7 @@
|
|||
<packageset dir="${src.dir}">
|
||||
<include name="org/apache/**"/>
|
||||
<exclude name="org/onelab/**"/>
|
||||
<exclude name="org/apache/hadoop/hbase/thrift/generated/**"/>
|
||||
</packageset>
|
||||
<link href="${javadoc.link.java}"/>
|
||||
<classpath >
|
||||
|
|
|
@ -144,7 +144,7 @@ public class Store implements HConstants, HeapSize {
|
|||
* Constructor
|
||||
* @param basedir qualified path under which the region directory lives;
|
||||
* generally the table subdirectory
|
||||
* @param info HRegionInfo for this region
|
||||
* @param region
|
||||
* @param family HColumnDescriptor for this column
|
||||
* @param fs file system object
|
||||
* @param reconstructionLog existing log file to apply if any
|
||||
|
@ -1716,4 +1716,4 @@ public class Store implements HConstants, HeapSize {
|
|||
public long heapSize() {
|
||||
return DEEP_OVERHEAD + this.memstore.heapSize();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -40,10 +40,10 @@ to migrate Thrift into Apache Incubator.
|
|||
<h2><a name="description">Description</a></h2>
|
||||
|
||||
<p>The <a href="generated/Hbase.Iface.html">Hbase API</a> is defined in the
|
||||
file Hbase.thrift. A server-side implementation of the API is in {@link
|
||||
org.apache.hadoop.hbase.thrift.ThriftServer}. The generated interfaces,
|
||||
types, and RPC utility files are checked into SVN under the {@link
|
||||
org.apache.hadoop.hbase.thrift.generated} directory.
|
||||
file Hbase.thrift. A server-side implementation of the API is in
|
||||
<code>org.apache.hadoop.hbase.thrift.ThriftServer</code>. The generated interfaces,
|
||||
types, and RPC utility files are checked into SVN under the
|
||||
<code>org.apache.hadoop.hbase.thrift.generated</code> directory.
|
||||
|
||||
</p>
|
||||
|
||||
|
|
Loading…
Reference in New Issue