Removed unnecessary dot from downloaded file names

This commit is contained in:
CrushedPixel
2015-05-11 23:51:16 +02:00
parent 4e3b05840e
commit bf03e2e05b

View File

@@ -31,7 +31,7 @@ public class DownloadedFileHandler {
}
private File generateFileForID(int id) {
return new File(downloadFolder, id+"."+ ReplayFile.ZIP_FILE_EXTENSION);
return new File(downloadFolder, id+ReplayFile.ZIP_FILE_EXTENSION);
}
public void addToIndex(int id) {