From: <mrp...@us...> - 2010-07-20 19:43:03
|
Revision: 3251 http://bigdata.svn.sourceforge.net/bigdata/?rev=3251&view=rev Author: mrpersonick Date: 2010-07-20 19:42:57 +0000 (Tue, 20 Jul 2010) Log Message: ----------- no longer needs the ILexiconConfiguration Modified Paths: -------------- branches/LEXICON_REFACTOR_BRANCH/bigdata-rdf/src/java/com/bigdata/rdf/spo/SPORelation.java Modified: branches/LEXICON_REFACTOR_BRANCH/bigdata-rdf/src/java/com/bigdata/rdf/spo/SPORelation.java =================================================================== --- branches/LEXICON_REFACTOR_BRANCH/bigdata-rdf/src/java/com/bigdata/rdf/spo/SPORelation.java 2010-07-20 19:41:32 UTC (rev 3250) +++ branches/LEXICON_REFACTOR_BRANCH/bigdata-rdf/src/java/com/bigdata/rdf/spo/SPORelation.java 2010-07-20 19:42:57 UTC (rev 3251) @@ -127,8 +127,7 @@ * @author <a href="mailto:tho...@us...">Bryan Thompson</a> * @version $Id$ */ -public class SPORelation extends AbstractRelation<ISPO> - implements ILexiconConfiguration { +public class SPORelation extends AbstractRelation<ISPO> { protected static final transient Logger log = Logger .getLogger(SPORelation.class); @@ -327,15 +326,15 @@ // Note: Do not eagerly resolve the indices. - { - - final boolean inlineTerms = Boolean.parseBoolean(getProperty( - AbstractTripleStore.Options.INLINE_TERMS, - AbstractTripleStore.Options.DEFAULT_INLINE_TERMS)); - - lexiconConfiguration = new LexiconConfiguration(inlineTerms); - - } +// { +// +// final boolean inlineTerms = Boolean.parseBoolean(getProperty( +// AbstractTripleStore.Options.INLINE_TERMS, +// AbstractTripleStore.Options.DEFAULT_INLINE_TERMS)); +// +// lexiconConfiguration = new LexiconConfiguration(inlineTerms); +// +// } } @@ -2339,16 +2338,16 @@ /** * The {@link ILexiconConfiguration} instance, which will determine how * terms are encoded and decoded in the key space. - */ private ILexiconConfiguration lexiconConfiguration; + */ /** * See {@link ILexiconConfiguration#isInline(DTE)}. Delegates to the * {@link #lexiconConfiguration} instance. - */ public boolean isInline(DTE dte) { return lexiconConfiguration.isInline(dte); } + */ /** * See {@link ILexiconConfiguration#isLegacyEncoding()}. Delegates to the @@ -2361,9 +2360,9 @@ /** * Return the {@link #lexiconConfiguration} instance. Used to determine * how to encode and decode terms in the key space. - */ public ILexiconConfiguration getLexiconConfiguration() { return lexiconConfiguration; } + */ } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |