[wpiutil] Remove Protobuf.getNested() (#6812)

It was superseded by using FileDescriptor.getDependencies().
This commit is contained in:
Joseph Eng
2024-07-08 06:59:05 -07:00
committed by GitHub
parent 6478ba6e3f
commit 3d22eeca9d
13 changed files with 0 additions and 69 deletions

View File

@@ -48,15 +48,6 @@ public interface Protobuf<T, MessageType extends ProtoMessage<?>> {
*/
Descriptor getDescriptor();
/**
* Gets the list of protobuf types referenced by this protobuf.
*
* @return list of protobuf types
*/
default Protobuf<?, ?>[] getNested() {
return new Protobuf<?, ?>[] {};
}
/**
* Creates protobuf message.
*