Skip to content

Commit

Permalink
Revert "fix: serialization error due to non-transient variable inside…
Browse files Browse the repository at this point in the history
… serializable class"

This reverts commit b80a3cf.

to avoid breaking change
  • Loading branch information
lukasj committed Mar 20, 2024
1 parent b80a3cf commit 489177b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/src/main/java/jakarta/xml/ws/Holder.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public final class Holder<T> implements Serializable {
/**
* The value contained in the holder.
*/
public transient T value;
public T value;

/**
* Creates a new holder with a {@code null} value.
Expand Down

0 comments on commit 489177b

Please sign in to comment.