mirror of
https://github.com/scylladb/scylladb.git
synced 2026-05-31 12:06:44 +00:00
The methods `make_mutation_data_request`, `make_data_request` and `make_digest_request` were marked as protected, but weren't used by deriving classes. The "API" for deriving classes is encapsulated through plural versions of these functions, such as `make_mutation_data_requests` (note the "s" at the end), which send a request to a set of replicas (rather than a single replica) but also do other important things - like gathering statistics - hence we don't want the deriving classes to use them directly. Marking these singular methods as private communicates the intent more clearly.