I have a proto A that depends on proto B. Then I deprecated the field protoB:
import "protoB.proto";
message ProtoA {
string assignmentStatus = 1;
protoB proto_b = 2 [deprecated = true];
}
I'd think in this case I should be able to remove the import
statement right? But when I did that, the compiler complains about the dependency not being imported.
What's the deal here?