From: <tho...@us...> - 2010-10-06 13:00:47
|
Revision: 3737 http://bigdata.svn.sourceforge.net/bigdata/?rev=3737&view=rev Author: thompsonbry Date: 2010-10-06 13:00:41 +0000 (Wed, 06 Oct 2010) Log Message: ----------- Applying the as found serialialVersionUID to BaseVocabulary. The class did not have an explicit serialVersionId. This change should be backward compatible with existing stores created from the trunk. Modified Paths: -------------- trunk/bigdata-rdf/src/java/com/bigdata/rdf/vocab/BaseVocabulary.java Modified: trunk/bigdata-rdf/src/java/com/bigdata/rdf/vocab/BaseVocabulary.java =================================================================== --- trunk/bigdata-rdf/src/java/com/bigdata/rdf/vocab/BaseVocabulary.java 2010-10-06 02:34:14 UTC (rev 3736) +++ trunk/bigdata-rdf/src/java/com/bigdata/rdf/vocab/BaseVocabulary.java 2010-10-06 13:00:41 UTC (rev 3737) @@ -65,6 +65,11 @@ final static public Logger log = Logger.getLogger(BaseVocabulary.class); /** + * The serialVersionUID as reported by the trunk on Oct 6, 2010. + */ + private static final long serialVersionUID = 1560142397515291331L; + + /** * The database that is the authority for the defined terms and term * identifiers. This will be <code>null</code> when the de-serialization * ctor is used. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |