From 7546efb83afa39770be5c7b9df72edc115e59a5b Mon Sep 17 00:00:00 2001 From: Ignat Beresnev Date: Thu, 9 Feb 2023 03:15:52 +0100 Subject: Remove old test data (#2824) --- .../crossLanguage/kotlinExtendsJava/Bar.html | 38 ---------------------- .../format/crossLanguage/kotlinExtendsJava/Bar.kt | 6 ---- .../crossLanguage/kotlinExtendsJava/test/Foo.java | 6 ---- 3 files changed, 50 deletions(-) delete mode 100644 core/testdata/format/crossLanguage/kotlinExtendsJava/Bar.html delete mode 100644 core/testdata/format/crossLanguage/kotlinExtendsJava/Bar.kt delete mode 100644 core/testdata/format/crossLanguage/kotlinExtendsJava/test/Foo.java (limited to 'core/testdata/format/crossLanguage') diff --git a/core/testdata/format/crossLanguage/kotlinExtendsJava/Bar.html b/core/testdata/format/crossLanguage/kotlinExtendsJava/Bar.html deleted file mode 100644 index 4d08043c..00000000 --- a/core/testdata/format/crossLanguage/kotlinExtendsJava/Bar.html +++ /dev/null @@ -1,38 +0,0 @@ - - - -Bar - test - - -test / test / Bar
-
-

Bar

-class Bar : Foo -

See xyzzy

-

Constructors

- - - - - - - -
-

<init>

-
-

See xyzzy

-Bar()
-

Inherited Functions

- - - - - - - -
-

xyzzy

-
-open fun xyzzy(): Unit
- - diff --git a/core/testdata/format/crossLanguage/kotlinExtendsJava/Bar.kt b/core/testdata/format/crossLanguage/kotlinExtendsJava/Bar.kt deleted file mode 100644 index 102782f9..00000000 --- a/core/testdata/format/crossLanguage/kotlinExtendsJava/Bar.kt +++ /dev/null @@ -1,6 +0,0 @@ -package test - -/** - * See [xyzzy] - */ -class Bar(): Foo() diff --git a/core/testdata/format/crossLanguage/kotlinExtendsJava/test/Foo.java b/core/testdata/format/crossLanguage/kotlinExtendsJava/test/Foo.java deleted file mode 100644 index 7c143030..00000000 --- a/core/testdata/format/crossLanguage/kotlinExtendsJava/test/Foo.java +++ /dev/null @@ -1,6 +0,0 @@ -package test; - -public class Foo { - public void xyzzy() { - } -} -- cgit