| 1 | package mp3; |
| 2 | |
| 3 | public final class FrameDataNode { |
| 4 | FrameDataNode nxt; |
| 5 | /** |
| 6 | * Frame Identifier |
| 7 | */ |
| 8 | int fid; |
| 9 | /** |
| 10 | * 3-character language descriptor |
| 11 | */ |
| 12 | String lng; |
| 13 | |
| 14 | Inf dsc = new Inf(), txt = new Inf(); |
| 15 | } |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…