Skip to content

Commit

Permalink
ups
Browse files Browse the repository at this point in the history
  • Loading branch information
Orbiter committed Aug 13, 2012
1 parent e5ef840 commit 9448d9a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -199,8 +199,8 @@ public boolean exists(final String id) throws IOException {
@Override
public SolrDocument get(String id) throws IOException {
SolrDocument doc = this.documentCache.get(id);
if (this.missCache.containsKey(id)) return null;
if (doc != null) return doc;
if (this.missCache.containsKey(id)) return null;
if (this.solr0 != null) {
doc = this.solr0.get(id);
if (doc != null) {
Expand Down

0 comments on commit 9448d9a

Please sign in to comment.