Parcourir la source

HADOOP-976. Make SequenceFile.Metadata public. Contributed by Runping.

git-svn-id: https://svn.apache.org/repos/asf/lucene/hadoop/trunk@503864 13f79535-47bb-0310-9956-ffa450edef68
Doug Cutting il y a 18 ans
Parent
commit
fe5eafbae7
2 fichiers modifiés avec 6 ajouts et 1 suppressions
  1. 5 0
      CHANGES.txt
  2. 1 1
      src/java/org/apache/hadoop/io/SequenceFile.java

+ 5 - 0
CHANGES.txt

@@ -1,6 +1,11 @@
 Hadoop Change Log
 
 
+Trunk (unreleased changes)
+
+ 1. HADOOP-976.  Make SequenceFile.Metadata public.  (Runping Qi via cutting)
+
+
 Release 0.11.0 - 2007-02-02
 
  1. HADOOP-781.  Remove methods deprecated in 0.10 that are no longer

+ 1 - 1
src/java/org/apache/hadoop/io/SequenceFile.java

@@ -500,7 +500,7 @@ public class SequenceFile {
    * pairs of Text type.
    *
    */
-  static class Metadata implements Writable {
+  public static class Metadata implements Writable {
 
     private TreeMap<Text, Text> theMetadata;