Ready to be merged back to master ...

Last buggy U tests fixed.
This commit is contained in:
Yaourt
2010-11-05 14:46:37 +01:00
parent 9ff9ab3505
commit 11fec5c182
3 changed files with 86 additions and 21 deletions

View File

@@ -286,18 +286,24 @@ public final class Protocol {
BY,
DESC,
GET,
LIMIT,
MESSAGE,
NO,
NOSORT,
PMESSAGE,
PSUBSCRIBE,
PUNSUBSCRIBE,
ONE,
LIMIT,
SET,
STORE,
SUBSCRIBE,
UNSUBSCRIBE,
WEIGHTS,
WITHSCORES;
public final byte[] raw;
Keyword() {
raw = this.name().getBytes(UTF8);
raw = this.name().toLowerCase().getBytes(UTF8);
}
}