We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 495ef75 commit d8c79a8Copy full SHA for d8c79a8
junit-platform-commons/src/main/java/org/junit/platform/commons/util/KotlinReflectionUtils.java
@@ -34,11 +34,12 @@
34
@API(status = INTERNAL, since = "5.13.3")
35
public class KotlinReflectionUtils {
36
37
+ private static final String DEFAULT_IMPLS_CLASS_NAME = "DefaultImpls";
38
+
39
private static final @Nullable Class<? extends Annotation> kotlinMetadata;
40
private static final @Nullable Class<?> kotlinCoroutineContinuation;
41
private static final boolean kotlinReflectPresent;
42
private static final boolean kotlinxCoroutinesPresent;
- public static final String DEFAULT_IMPLS_CLASS_NAME = "DefaultImpls";
43
44
static {
45
var metadata = tryToLoadKotlinMetadataClass();
0 commit comments