소스 검색

remove unnecessary comment

Futa Arai 2 년 전
부모
커밋
b7078cbece
1개의 변경된 파일0개의 추가작업 그리고 1개의 파일을 삭제
  1. 0 1
      apps/app/src/features/page-bulk-export/server/service/page-bulk-export.ts

+ 0 - 1
apps/app/src/features/page-bulk-export/server/service/page-bulk-export.ts

@@ -158,7 +158,6 @@ class PageBulkExportService {
             //     - The remaining chunk after upload will be added to buffer in the next iteration
             const dataSize = Math.min(this.partSize - filledPartSize, chunk.length - offset);
             // Add chunk data to buffer
-            // buffer = Buffer.concat([buffer, chunk.slice(offset, offset + dataSize)]);
             chunk.copy(part, filledPartSize, offset, offset + dataSize);
             filledPartSize += dataSize;