From 2e4ec80bd8a1187e10b7c4a3fb559c6a656df1e5 Mon Sep 17 00:00:00 2001 From: 0xboobface <0xboobface@gmail.com> Date: Sun, 10 May 2020 10:43:53 +0200 Subject: [PATCH] Reduce visibility of public method --- .../src/main/java/ctbrec/sites/chaturbate/ChaturbateModel.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/main/java/ctbrec/sites/chaturbate/ChaturbateModel.java b/common/src/main/java/ctbrec/sites/chaturbate/ChaturbateModel.java index 8621d0ff..67467088 100644 --- a/common/src/main/java/ctbrec/sites/chaturbate/ChaturbateModel.java +++ b/common/src/main/java/ctbrec/sites/chaturbate/ChaturbateModel.java @@ -338,7 +338,7 @@ public class ChaturbateModel extends AbstractModel { // NOSONAR return getMasterPlaylist(getStreamInfo()); } - public MasterPlaylist getMasterPlaylist(StreamInfo streamInfo) throws IOException, ParseException, PlaylistException { + private MasterPlaylist getMasterPlaylist(StreamInfo streamInfo) throws IOException, ParseException, PlaylistException { LOG.trace("Loading master playlist {}", streamInfo.url); Request req = new Request.Builder() .url(streamInfo.url)