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 {
|
||||
companion object {
|
||||
val testValue = "foobar"
|
||||
@JvmStatic get() {
|
||||
}
|
||||
@JvmStatic
|
||||
val testValue get() = "foobar"
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+2
-3
@@ -17,9 +17,8 @@ public class Foo {
|
||||
package foo
|
||||
|
||||
object Bar {
|
||||
val testValue = "foobar"
|
||||
@JvmStatic get() {
|
||||
}
|
||||
@JvmStatic
|
||||
val testValue get() = "foobar"
|
||||
}
|
||||
|
||||
// FILE: bar/Foo.after.java
|
||||
|
||||
Reference in New Issue
Block a user