Removed trailing spaces + some more final

pull/1/head
Roland Haeder 12 years ago committed by orbiter
parent aaedc0405d
commit be0ff6018f

@ -326,7 +326,7 @@ public final class Fulltext {
} }
} }
public URIMetadataNode getMetadata(WeakPriorityBlockingQueue.Element<WordReferenceVars> element) { public URIMetadataNode getMetadata(final WeakPriorityBlockingQueue.Element<WordReferenceVars> element) {
if (element == null) return null; if (element == null) return null;
WordReferenceVars wre = element.getElement(); WordReferenceVars wre = element.getElement();
if (wre == null) return null; // all time was already wasted in takeRWI to get another element if (wre == null) return null; // all time was already wasted in takeRWI to get another element
@ -340,7 +340,7 @@ public final class Fulltext {
return getMetadata(urlHash, null, 0); return getMetadata(urlHash, null, 0);
} }
private URIMetadataNode getMetadata(final byte[] urlHash, WordReferenceVars wre, long weight) { private URIMetadataNode getMetadata(final byte[] urlHash, final WordReferenceVars wre, final long weight) {
String u = ASCII.String(urlHash); String u = ASCII.String(urlHash);
// get the metadata from Solr // get the metadata from Solr
@ -391,7 +391,7 @@ public final class Fulltext {
this.statsDump = null; this.statsDump = null;
if (MemoryControl.shortStatus()) clearCache(); if (MemoryControl.shortStatus()) clearCache();
} }
public void putEdges(final Collection<SolrInputDocument> edges) throws IOException { public void putEdges(final Collection<SolrInputDocument> edges) throws IOException {
if (edges == null || edges.size() == 0) return; if (edges == null || edges.size() == 0) return;
try { try {
@ -402,7 +402,7 @@ public final class Fulltext {
this.statsDump = null; this.statsDump = null;
if (MemoryControl.shortStatus()) clearCache(); if (MemoryControl.shortStatus()) clearCache();
} }
public void putMetadata(final URIMetadataRow entry) throws IOException { public void putMetadata(final URIMetadataRow entry) throws IOException {
byte[] idb = entry.hash(); byte[] idb = entry.hash();
String id = ASCII.String(idb); String id = ASCII.String(idb);
@ -412,7 +412,7 @@ public final class Fulltext {
SolrDocument sd = this.getDefaultConnector().getDocumentById(id); SolrDocument sd = this.getDefaultConnector().getDocumentById(id);
if (sd == null || (new URIMetadataNode(sd)).isOlder(entry)) { if (sd == null || (new URIMetadataNode(sd)).isOlder(entry)) {
putDocument(getDefaultConfiguration().metadata2solr(entry)); putDocument(getDefaultConfiguration().metadata2solr(entry));
} }
} catch (final SolrException e) { } catch (final SolrException e) {
throw new IOException(e.getMessage(), e); throw new IOException(e.getMessage(), e);
} }
@ -440,7 +440,7 @@ public final class Fulltext {
(" AND " + WebgraphSchema.load_date_dt.getSolrFieldName() + ":[* TO " + ISO8601Formatter.FORMATTER.format(freshdate) + "]") : (" AND " + WebgraphSchema.load_date_dt.getSolrFieldName() + ":[* TO " + ISO8601Formatter.FORMATTER.format(freshdate) + "]") :
"" ""
); );
// delete in solr // delete in solr
try {Fulltext.this.getDefaultConnector().deleteByQuery(collection1Query);} catch (final IOException e) {} try {Fulltext.this.getDefaultConnector().deleteByQuery(collection1Query);} catch (final IOException e) {}
try {Fulltext.this.getWebgraphConnector().deleteByQuery(webgraphQuery);} catch (final IOException e) {} try {Fulltext.this.getWebgraphConnector().deleteByQuery(webgraphQuery);} catch (final IOException e) {}

Loading…
Cancel
Save