Fix invalid test data for static import quick fix
This commit is contained in:
Vendored
+2
-3
@@ -18,9 +18,8 @@ package foo
|
|||||||
|
|
||||||
class Bar {
|
class Bar {
|
||||||
companion object {
|
companion object {
|
||||||
val testValue = "foobar"
|
@JvmStatic
|
||||||
@JvmStatic get() {
|
val testValue get() = "foobar"
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
+2
-3
@@ -17,9 +17,8 @@ public class Foo {
|
|||||||
package foo
|
package foo
|
||||||
|
|
||||||
object Bar {
|
object Bar {
|
||||||
val testValue = "foobar"
|
@JvmStatic
|
||||||
@JvmStatic get() {
|
val testValue get() = "foobar"
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// FILE: bar/Foo.after.java
|
// FILE: bar/Foo.after.java
|
||||||
|
|||||||
Reference in New Issue
Block a user