Skip to content

Commit

Permalink
Move torrent client to the separate service
Browse files Browse the repository at this point in the history
  • Loading branch information
galushko committed Oct 18, 2023
1 parent c19a5b6 commit ebda5e8
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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.*;

Expand Down Expand Up @@ -88,7 +87,7 @@ public List<Object> convertToList() {
return (List<Object>) value;
}
}
throw new NotImplementedException();
throw new RuntimeException();
}

public String getText() {
Expand Down

0 comments on commit ebda5e8

Please sign in to comment.