build fix

This commit is contained in:
Jindra Petřík
2025-07-19 07:36:10 +02:00
parent d23fe66a01
commit 4e62cddacf

View File

@@ -786,9 +786,12 @@ public final class SWF implements SWFContainerItem, Timelined, Openable {
*
* @param swfs List of SWFs to set as dependencies
*/
public void setAbcIndexDependencies(List<SWF> swfs) throws InterruptedException {
public void setAbcIndexDependencies(List<SWF> swfs) {
abcIndex = null;
getAbcIndex();
if (abcIndex == null) {
return;
}
for (SWF swf : swfs) {
for (Tag tag : swf.tags) {
if (tag instanceof ABCContainerTag) {