add toString to match_all docs

This commit is contained in:
kimchy 2010-11-02 10:23:05 +02:00
parent dd9553e7cc
commit ef4c44577a
1 changed files with 4 additions and 0 deletions

View File

@ -55,4 +55,8 @@ public class MatchAllDocsFilter extends Filter {
return false; return false;
} }
@Override public String toString() {
return "*:*";
}
} }