Commit bf462aca by christosts Committed by Christos Tsilopoulos

Fix bug in Timeline.getRemovedAdGroupCount()

#minor-release

PiperOrigin-RevId: 389174519
parent 8fb1e5ce
...@@ -710,7 +710,7 @@ public abstract class Timeline implements Bundleable { ...@@ -710,7 +710,7 @@ public abstract class Timeline implements Bundleable {
* 0} (inclusive) and {@code removedAdGroupCount} (exclusive) will be empty. * 0} (inclusive) and {@code removedAdGroupCount} (exclusive) will be empty.
*/ */
public int getRemovedAdGroupCount() { public int getRemovedAdGroupCount() {
return adPlaybackState.adGroupCount; return adPlaybackState.removedAdGroupCount;
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment