From ebda5e8da8c6e0e308046b5ce2ead3c09dc21629 Mon Sep 17 00:00:00 2001 From: galushko Date: Wed, 18 Oct 2023 23:09:07 +0300 Subject: [PATCH] Move torrent client to the separate service --- .../main/java/com/halushko/kinocat/core/rabbit/SmartJson.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/core/src/main/java/com/halushko/kinocat/core/rabbit/SmartJson.java b/core/src/main/java/com/halushko/kinocat/core/rabbit/SmartJson.java index 04a164e8..5b38bb73 100644 --- a/core/src/main/java/com/halushko/kinocat/core/rabbit/SmartJson.java +++ b/core/src/main/java/com/halushko/kinocat/core/rabbit/SmartJson.java @@ -6,7 +6,6 @@ import com.fasterxml.jackson.databind.SerializationFeature; import lombok.extern.slf4j.Slf4j; import lombok.val; -import org.apache.commons.lang3.NotImplementedException; import java.util.*; @@ -88,7 +87,7 @@ public List convertToList() { return (List) value; } } - throw new NotImplementedException(); + throw new RuntimeException(); } public String getText() {