feat/training_260202 #36

Merged
gina merged 4 commits from feat/training_260202 into develop 2026-02-11 18:51:01 +09:00
Showing only changes of commit d7e19abfc9 - Show all commits

View File

@@ -199,9 +199,6 @@ public class UploadDto {
private String fileName; private String fileName;
public double getUploadRate() { public double getUploadRate() {
if (this.chunkTotalIndex == 0) {
return 0.0;
}
return (double) (this.chunkIndex + 1) / (this.chunkTotalIndex + 1) * 100.0; return (double) (this.chunkIndex + 1) / (this.chunkTotalIndex + 1) * 100.0;
} }
} }