001package net.bramp.ffmpeg.probe;
002
003import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
004
005@SuppressFBWarnings(
006    value = {"UUF_UNUSED_PUBLIC_OR_PROTECTED_FIELD"},
007    justification = "POJO objects where the fields are populated by gson")
008public class FFmpegChapterTag {
009  public String title;
010}