Skip to content

Commit

Permalink
Merge -r 588599:588600 and 589547:589548 from trunk to branch-0.15 to…
Browse files Browse the repository at this point in the history
… fix HADOOP-2103.

git-svn-id: https://svn.apache.org/repos/asf/lucene/hadoop/branches/branch-0.15@589551 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
acmurthy committed Oct 29, 2007
1 parent 46099f7 commit 6d7c257
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -333,6 +333,9 @@ Branch 0.15 (unreleased changes)
to the superceding ToolRunner to ensure it picks up the appropriate
configuration resources. (Dennis Kubes and Enis Soztutar via acmurthy)

HADOOP-2103. Fix minor javadoc bugs introduce by HADOOP-2046. (Nigel
Daley via acmurthy)

IMPROVEMENTS

HADOOP-1908. Restructure data node code so that block sending and
Expand Down
6 changes: 3 additions & 3 deletions src/java/org/apache/hadoop/conf/Configuration.java
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ public void addFinalResource(Path file) {
* Add a configuration resource.
*
* The properties of this resource will override properties of previously
* added resources, unless they were marked <a href="#Final>final</a>.
* added resources, unless they were marked <a href="#Final">final</a>.
*
* @param name resource to be added, the classpath is examined for a file
* with that name.
Expand All @@ -233,7 +233,7 @@ public void addResource(String name) {
* Add a configuration resource.
*
* The properties of this resource will override properties of previously
* added resources, unless they were marked <a href="#Final>final</a>.
* added resources, unless they were marked <a href="#Final">final</a>.
*
* @param url url of the resource to be added, the local filesystem is
* examined directly to find the resource, without referring to
Expand All @@ -247,7 +247,7 @@ public void addResource(URL url) {
* Add a configuration resource.
*
* The properties of this resource will override properties of previously
* added resources, unless they were marked <a href="#Final>final</a>.
* added resources, unless they were marked <a href="#Final">final</a>.
*
* @param file file-path of resource to be added, the local filesystem is
* examined directly to find the resource, without referring to
Expand Down
2 changes: 1 addition & 1 deletion src/java/org/apache/hadoop/io/WritableComparable.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
* public int compareTo(MyWritableComparable w) {
* int thisValue = this.value;
* int thatValue = ((IntWritable)o).value;
* return (thisValue<thatValue ? -1 : (thisValue==thatValue ? 0 : 1));
* return (thisValue &lt; thatValue ? -1 : (thisValue==thatValue ? 0 : 1));
* }
* }
* </pre></blockquote></p>
Expand Down
1 change: 1 addition & 0 deletions src/java/org/apache/hadoop/mapred/Mapper.java
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@
* output.collect(key, val);
* }
* }
* </pre></blockquote></p>
*
* <p>Applications may write a custom {@link MapRunnable} to exert greater
* control on map processing e.g. multi-threaded <code>Mapper</code>s etc.</p>
Expand Down

0 comments on commit 6d7c257

Please sign in to comment.