summaryrefslogtreecommitdiff
path: root/core/src/main/java/de/danoeh/antennapod
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/main/java/de/danoeh/antennapod')
-rw-r--r--core/src/main/java/de/danoeh/antennapod/core/util/playback/Timeline.java13
1 files changed, 2 insertions, 11 deletions
diff --git a/core/src/main/java/de/danoeh/antennapod/core/util/playback/Timeline.java b/core/src/main/java/de/danoeh/antennapod/core/util/playback/Timeline.java
index 5b9452d6f..8624ec7e5 100644
--- a/core/src/main/java/de/danoeh/antennapod/core/util/playback/Timeline.java
+++ b/core/src/main/java/de/danoeh/antennapod/core/util/playback/Timeline.java
@@ -106,11 +106,10 @@ public class Timeline {
* This method does NOT change the original shownotes string of the shownotesProvider object and it should
* also not be changed by the caller.
*
- * @param addTimecodes True if this method should add timecode links
* @return The processed HTML string.
*/
@NonNull
- public String processShownotes(final boolean addTimecodes) {
+ public String processShownotes() {
final Playable playable = (shownotesProvider instanceof Playable) ? (Playable) shownotesProvider : null;
// load shownotes
@@ -155,10 +154,7 @@ public class Timeline {
document.head().appendElement("style").attr("type", "text/css").text(styleStr);
// apply timecode links
- if (addTimecodes) {
- addTimecodes(document, playable);
- }
-
+ addTimecodes(document, playable);
return document.toString();
}
@@ -188,11 +184,6 @@ public class Timeline {
return -1;
}
-
- public void setShownotesProvider(@NonNull ShownotesProvider shownotesProvider) {
- this.shownotesProvider = shownotesProvider;
- }
-
private void addTimecodes(Document document, final Playable playable) {
Elements elementsWithTimeCodes = document.body().getElementsMatchingOwnText(TIMECODE_REGEX);
Log.d(TAG, "Recognized " + elementsWithTimeCodes.size() + " timecodes");