Skip to content

Commit

Permalink
Remove unused 'DownloadAction:replaceFileName' method
Browse files Browse the repository at this point in the history
  • Loading branch information
andrii-bodnar committed Dec 6, 2022
1 parent a0542f1 commit 587fbe0
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -378,12 +378,6 @@ private Map<String, String> getFiles(
translationReplace, sources, fb.getSource(), basePath, placeholderUtil);
}

private String replaceFileName(String filePath, String newName) {
String[] filePathParts = filePath.split("[\\\\/]+");
filePathParts[filePathParts.length - 1] = newName;
return String.join(Utils.PATH_SEPARATOR, filePathParts);
}

private ProjectBuild buildTranslation(ProjectClient client, BuildProjectTranslationRequest request) {
AtomicInteger sleepTime = new AtomicInteger(CHECK_WAITING_TIME_FIRST);

Expand Down

0 comments on commit 587fbe0

Please sign in to comment.