1// Copyright 2016, Joe Tsai. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE.md file.
4
5// +build !gofuzz
6
7// This file exists to suppress fuzzing details from release builds.
8
9package bzip2
10
11type fuzzReader struct{}
12
13func (*fuzzReader) updateChecksum(int64, uint32) {}
14