Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion deepl-java/src/main/java/com/deepl/api/DeepLClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -641,7 +641,7 @@ public MultilingualGlossaryInfo updateMultilingualGlossaryDictionaryFromCsv(
* @throws DeepLException If any error occurs while communicating with the DeepL API, a {@link
* DeepLException} or a derived class will be thrown.
*/
void deleteMultilingualGlossary(String glossaryId) throws DeepLException, InterruptedException {
public void deleteMultilingualGlossary(String glossaryId) throws DeepLException, InterruptedException {
String relativeUrl = String.format("/v3/glossaries/%s", glossaryId);
HttpResponse response = httpClientWrapper.sendDeleteRequestWithBackoff(relativeUrl);
this.checkResponse(response, false, true);
Expand Down
Loading