Skip to content

Commit 3a4a33c

Browse files
committed
Remove Serializable from UniqueIdFormat
1 parent f2b1fc2 commit 3a4a33c

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

junit-platform-engine/src/main/java/org/junit/platform/engine/UniqueIdFormat.java

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@
1212

1313
import static java.util.stream.Collectors.joining;
1414

15-
import java.io.Serial;
16-
import java.io.Serializable;
1715
import java.net.URLDecoder;
1816
import java.net.URLEncoder;
1917
import java.nio.charset.StandardCharsets;
@@ -33,10 +31,7 @@
3331
*
3432
* @since 1.0
3533
*/
36-
class UniqueIdFormat implements Serializable {
37-
38-
@Serial
39-
private static final long serialVersionUID = 1L;
34+
class UniqueIdFormat {
4035

4136
private static final UniqueIdFormat defaultFormat = new UniqueIdFormat('[', ':', ']', '/');
4237

0 commit comments

Comments
 (0)