We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3835914 commit 852fabeCopy full SHA for 852fabe
1 file changed
deepl-java/src/main/java/com/deepl/api/DeepLClient.java
@@ -641,7 +641,7 @@ public MultilingualGlossaryInfo updateMultilingualGlossaryDictionaryFromCsv(
641
* @throws DeepLException If any error occurs while communicating with the DeepL API, a {@link
642
* DeepLException} or a derived class will be thrown.
643
*/
644
- void deleteMultilingualGlossary(String glossaryId) throws DeepLException, InterruptedException {
+ public void deleteMultilingualGlossary(String glossaryId) throws DeepLException, InterruptedException {
645
String relativeUrl = String.format("/v3/glossaries/%s", glossaryId);
646
HttpResponse response = httpClientWrapper.sendDeleteRequestWithBackoff(relativeUrl);
647
this.checkResponse(response, false, true);
0 commit comments