Skip to content

Commit

Permalink
disable copy of index_type_dat_file
Browse files Browse the repository at this point in the history
  • Loading branch information
kartikeytewari-ul committed Jul 11, 2024
1 parent 7c7baef commit f4aff07
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -332,11 +332,11 @@ public void writeFileEntry(UploadFile logFile) throws IOException {
}

void copy(InputStream source, OutputStream target) throws IOException {
byte[] buf = new byte[8192];
int length;
while ((length = source.read(buf)) > 0) {
target.write(buf, 0, length);
}
// byte[] buf = new byte[8192];
// int length;
// while ((length = source.read(buf)) > 0) {
// target.write(buf, 0, length);
// }
}

public void addValueId(long value) {
Expand Down

0 comments on commit f4aff07

Please sign in to comment.