mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-21 01:01:43 +00:00
[wpiutil] Remove type param from ProtobufSerializable and StructSerializable (#6122)
This commit is contained in:
@@ -5,4 +5,4 @@
|
||||
package edu.wpi.first.util;
|
||||
|
||||
/** Marker interface to indicate a class is serializable using WPI serialization methods. */
|
||||
public interface WPISerializable<T> {}
|
||||
public interface WPISerializable {}
|
||||
|
||||
@@ -12,4 +12,4 @@ import edu.wpi.first.util.WPISerializable;
|
||||
* <p>While this cannot be enforced by the interface, any class implementing this interface should
|
||||
* provide a public final static `proto` member variable.
|
||||
*/
|
||||
public interface ProtobufSerializable<T> extends WPISerializable<T> {}
|
||||
public interface ProtobufSerializable extends WPISerializable {}
|
||||
|
||||
@@ -12,4 +12,4 @@ import edu.wpi.first.util.WPISerializable;
|
||||
* <p>While this cannot be enforced by the interface, any class implementing this interface should
|
||||
* provide a public final static `struct` member variable.
|
||||
*/
|
||||
public interface StructSerializable<T> extends WPISerializable<T> {}
|
||||
public interface StructSerializable extends WPISerializable {}
|
||||
|
||||
Reference in New Issue
Block a user