Skip to content
This repository has been archived by the owner on May 4, 2023. It is now read-only.

Commit

Permalink
on second thoughts, use a private field name.
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Newson committed Apr 17, 2010
1 parent 6ea8a26 commit 5b63e4c
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -624,13 +624,13 @@ private void commitAll() throws IOException {

private Document forceDocument() {
final Document result = new Document();
result.add(new Field("_id", uuid.toString(), Store.NO,
result.add(new Field("_cl", uuid.toString(), Store.NO,
Index.NOT_ANALYZED_NO_NORMS));
return result;
}

private Term forceTerm() {
return new Term("_id", uuid.toString());
return new Term("_cl", uuid.toString());
}

private boolean getBooleanParameter(final HttpServletRequest req,
Expand Down

0 comments on commit 5b63e4c

Please sign in to comment.