Author: aching Date: Tue May 29 20:50:34 2012 New Revision: 1343974 URL: http://svn.apache.org/viewvc?rev=1343974&view=rev Log: GIRAPH-187: SequenceFileVertexInputFormat has WritableComparable<I> as a bounded type for I. (roman4asf via aching )
Modified: giraph/trunk/CHANGELOG giraph/trunk/src/main/java/org/apache/giraph/lib/SequenceFileVertexInputFormat.java Modified: giraph/trunk/CHANGELOG URL: http://svn.apache.org/viewvc/giraph/trunk/CHANGELOG?rev=1343974&r1=1343973&r2=1343974&view=diff ============================================================================== --- giraph/trunk/CHANGELOG (original) +++ giraph/trunk/CHANGELOG Tue May 29 20:50:34 2012 @@ -2,16 +2,19 @@ Giraph Change Log Release 0.2.0 - unreleased - GIRAPH-20. Move temporary test files from the project directory. (ssc) + GIRAPH-187: SequenceFileVertexInputFormat has WritableComparable<I> + as a bounded type for I. (roman4asf via aching) - GIRAPH-37. Implement Netty-backed IPC. (aching) + GIRAPH-20: Move temporary test files from the project directory. (ssc) - GIRAPH-184. Upgrade to junit4. (Devaraj K via jghoman) + GIRAPH-37: Implement Netty-backed IPC. (aching) - GIRAPH-176. BasicRPCCommunications has unnecessary cast of Vertex. + GIRAPH-184: Upgrade to junit4. (Devaraj K via jghoman) + + GIRAPH-176: BasicRPCCommunications has unnecessary cast of Vertex. (Devaraj K via jghoman) - GIRAPH-175. Replace manual array copy to utility method call. + GIRAPH-175: Replace manual array copy to utility method call. (Devaraj K via jghoman) GIRAPH-181: Add Hadoop 1.0 profile to pom.xml. (ekoontz via aching) Modified: giraph/trunk/src/main/java/org/apache/giraph/lib/SequenceFileVertexInputFormat.java URL: http://svn.apache.org/viewvc/giraph/trunk/src/main/java/org/apache/giraph/lib/SequenceFileVertexInputFormat.java?rev=1343974&r1=1343973&r2=1343974&view=diff ============================================================================== --- giraph/trunk/src/main/java/org/apache/giraph/lib/SequenceFileVertexInputFormat.java (original) +++ giraph/trunk/src/main/java/org/apache/giraph/lib/SequenceFileVertexInputFormat.java Tue May 29 20:50:34 2012 @@ -40,7 +40,8 @@ import java.util.List; * @param <M> Message data * @param <X> Value type */ -public class SequenceFileVertexInputFormat<I extends WritableComparable<I>, +@SuppressWarnings("rawtypes") +public class SequenceFileVertexInputFormat<I extends WritableComparable, V extends Writable, E extends Writable, M extends Writable, X extends BasicVertex<I, V, E, M>> extends VertexInputFormat<I, V, E, M> { @@ -70,7 +71,7 @@ public class SequenceFileVertexInputForm * @param <M> Message data * @param <X> Value type */ - public static class SequenceFileVertexReader<I extends WritableComparable<I>, + public static class SequenceFileVertexReader<I extends WritableComparable, V extends Writable, E extends Writable, M extends Writable, X extends BasicVertex<I, V, E, M>> implements VertexReader<I, V, E, M> {