+ fix bug in sort param initialization

This commit is contained in:
Costin Leau
2011-03-09 20:39:02 +02:00
parent a72cf04a71
commit df5a4e3cfc

View File

@@ -99,7 +99,7 @@ public class DefaultSortParameters implements SortParameters {
public void setGetPattern(byte[][] gPattern) {
getPattern.clear();
for (byte[] bs : getPattern) {
for (byte[] bs : gPattern) {
getPattern.add(bs);
}
}