Add a TODO to make TransformationRequest.Builder package private

PiperOrigin-RevId: 545400150
This commit is contained in:
kimvde 2023-07-04 10:47:02 +00:00 committed by microkatz
parent 3456382ae7
commit 8ea79a13f9

View File

@ -204,6 +204,8 @@ public final class Transformer {
@Deprecated
@CanIgnoreReturnValue
public Builder setTransformationRequest(TransformationRequest transformationRequest) {
// TODO(b/289872787): Make TransformationRequest.Builder package private once this method is
// removed.
this.transformationRequest = transformationRequest;
return this;
}