Skip to content

Commit

Permalink
Less exposure of serializability.
Browse files Browse the repository at this point in the history
  • Loading branch information
raphw committed Aug 15, 2024
1 parent bb444eb commit 68b9f6d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
/**
* An entry point for a build tool which is responsible for the transformation's configuration.
*/
public interface EntryPoint extends Serializable {
public interface EntryPoint {

/**
* Returns the Byte Buddy instance to use.
Expand Down Expand Up @@ -159,7 +159,7 @@ public DynamicType.Builder<?> transform(TypeDescription typeDescription,
* An entry point that wraps another entry point but disables validation.
*/
@HashCodeAndEqualsPlugin.Enhance
class Unvalidated implements EntryPoint {
class Unvalidated implements EntryPoint, Serializable {

/**
* The serial version UID.
Expand Down

0 comments on commit 68b9f6d

Please sign in to comment.