Skip to content

Commit 09dca93

Browse files
committed
Remove final keyword
Issue: #3717 Signed-off-by: yongjunhong <[email protected]>
1 parent 7c58f66 commit 09dca93

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

junit-platform-commons/src/main/java/org/junit/platform/commons/util/ServiceLoaderUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
* @since 5.11
3030
*/
3131
@API(status = API.Status.INTERNAL, since = "5.11")
32-
public final class ServiceLoaderUtils {
32+
public class ServiceLoaderUtils {
3333

3434
private ServiceLoaderUtils() {
3535
/* no-op */

junit-platform-commons/src/main/java9/org/junit/platform/commons/util/ServiceLoaderUtils.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@
3131
@API(status = Status.INTERNAL, since = "5.11")
3232
public class ServiceLoaderUtils {
3333

34+
private ServiceLoaderUtils() {
35+
/* no-op */
36+
}
37+
3438
/**
3539
* Loads services of the given type using the specified class loader and filters them using the provided predicate.
3640
*

0 commit comments

Comments
 (0)