From: <tho...@us...> - 2014-01-27 16:25:13
|
Revision: 7832 http://bigdata.svn.sourceforge.net/bigdata/?rev=7832&view=rev Author: thompsonbry Date: 2014-01-27 16:25:06 +0000 (Mon, 27 Jan 2014) Log Message: ----------- A review of the IRabaCoder implementations revealed that the new FrontCodedRabaCoderDupKeys class lacked an explicit serialVersionUID field. That is fixed in in this commit. Modified Paths: -------------- branches/BIGDATA_RELEASE_1_3_0/bigdata/src/java/com/bigdata/btree/raba/codec/FrontCodedRabaCoderDupKeys.java Modified: branches/BIGDATA_RELEASE_1_3_0/bigdata/src/java/com/bigdata/btree/raba/codec/FrontCodedRabaCoderDupKeys.java =================================================================== --- branches/BIGDATA_RELEASE_1_3_0/bigdata/src/java/com/bigdata/btree/raba/codec/FrontCodedRabaCoderDupKeys.java 2014-01-27 16:20:42 UTC (rev 7831) +++ branches/BIGDATA_RELEASE_1_3_0/bigdata/src/java/com/bigdata/btree/raba/codec/FrontCodedRabaCoderDupKeys.java 2014-01-27 16:25:06 UTC (rev 7832) @@ -35,6 +35,8 @@ */ public static final transient FrontCodedRabaCoderDupKeys INSTANCE = new FrontCodedRabaCoderDupKeys(); + private static final long serialVersionUID = 1L; + protected transient static final int DEFAULT_RATIO = 8; public FrontCodedRabaCoderDupKeys(final int ratio) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |