From: <mrp...@us...> - 2010-07-20 19:41:38
|
Revision: 3250 http://bigdata.svn.sourceforge.net/bigdata/?rev=3250&view=rev Author: mrpersonick Date: 2010-07-20 19:41:32 +0000 (Tue, 20 Jul 2010) Log Message: ----------- no longer implement ILexiconConfiguration Modified Paths: -------------- branches/LEXICON_REFACTOR_BRANCH/bigdata-rdf/src/java/com/bigdata/rdf/lexicon/LexiconRelation.java Modified: branches/LEXICON_REFACTOR_BRANCH/bigdata-rdf/src/java/com/bigdata/rdf/lexicon/LexiconRelation.java =================================================================== --- branches/LEXICON_REFACTOR_BRANCH/bigdata-rdf/src/java/com/bigdata/rdf/lexicon/LexiconRelation.java 2010-07-20 19:40:23 UTC (rev 3249) +++ branches/LEXICON_REFACTOR_BRANCH/bigdata-rdf/src/java/com/bigdata/rdf/lexicon/LexiconRelation.java 2010-07-20 19:41:32 UTC (rev 3250) @@ -146,7 +146,7 @@ * @version $Id$ */ public class LexiconRelation extends AbstractRelation<BigdataValue> - implements ILexiconConfiguration { + /*implements ILexiconConfiguration*/ { final protected static Logger log = Logger.getLogger(LexiconRelation.class); @@ -2219,7 +2219,7 @@ final DTE dte = datatype == null ? null : DTE.valueOf(datatype); - if (dte == null || !isInline(dte)) + if (dte == null || !getLexiconConfiguration().isInline(dte)) return null; final String v = value.stringValue(); @@ -2580,10 +2580,10 @@ /** * 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 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |