300301302303304305306307308309310
{ int expectedFrames = swf.getFrameCount(); int foundFrames = swf.getFrames().size(); if (expectedFrames != foundFrames) { problems.add(new SWFFrameCountMismatchProblem( expectedFrames, foundFrames, swfPath)); } } return swf; }