diff options
Diffstat (limited to 'pkg/classes/stop.go')
| -rw-r--r-- | pkg/classes/stop.go | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/pkg/classes/stop.go b/pkg/classes/stop.go index 753be19..96bc1e4 100644 --- a/pkg/classes/stop.go +++ b/pkg/classes/stop.go | |||
| @@ -2,7 +2,6 @@ package classes | |||
| 2 | 2 | ||
| 3 | import ( | 3 | import ( |
| 4 | "github.com/pektezol/bitreader" | 4 | "github.com/pektezol/bitreader" |
| 5 | "github.com/pektezol/demoparser/pkg/writer" | ||
| 6 | ) | 5 | ) |
| 7 | 6 | ||
| 8 | type Stop struct { | 7 | type Stop struct { |
| @@ -12,6 +11,5 @@ type Stop struct { | |||
| 12 | func (stop *Stop) ParseStop(reader *bitreader.Reader) { | 11 | func (stop *Stop) ParseStop(reader *bitreader.Reader) { |
| 13 | if reader.TryReadBool() { | 12 | if reader.TryReadBool() { |
| 14 | stop.RemainingData = reader.TryReadBitsToSlice(uint64(reader.TryReadRemainingBits())) | 13 | stop.RemainingData = reader.TryReadBitsToSlice(uint64(reader.TryReadRemainingBits())) |
| 15 | writer.AppendLine("\tRemaining Data: %v", stop.RemainingData) | ||
| 16 | } | 14 | } |
| 17 | } | 15 | } |