Skip to content

Commit e35ab0d

Browse files
authored
Merge pull request #52 from vprus/cleanup-xor-serialization
Xor8: remove previous serialization methods
2 parents 145e984 + 9e19bc6 commit e35ab0d

File tree

1 file changed

+2
-0
lines changed
  • fastfilter/src/main/java/org/fastfilter/xor

1 file changed

+2
-0
lines changed

fastfilter/src/main/java/org/fastfilter/xor/Xor8.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,7 @@ private int fingerprint(long hash) {
164164
return (int) (hash & ((1 << BITS_PER_FINGERPRINT) - 1));
165165
}
166166

167+
@Deprecated
167168
public byte[] getData() {
168169
try {
169170
ByteArrayOutputStream out = new ByteArrayOutputStream();
@@ -177,6 +178,7 @@ public byte[] getData() {
177178
}
178179
}
179180

181+
@Deprecated
180182
public Xor8(InputStream in) {
181183
try {
182184
DataInputStream din = new DataInputStream(in);

0 commit comments

Comments
 (0)