KT-9664 Add quickfix to convert a piece of code to pretty look SAM-style
#KT-9664 Fixed
This commit is contained in:
@@ -0,0 +1 @@
|
||||
SwingUtilities { println("a") }
|
||||
@@ -0,0 +1,5 @@
|
||||
SwingUtilities.invokeLater(object : Runnable {
|
||||
override fun run() {
|
||||
println("a")
|
||||
}
|
||||
})
|
||||
@@ -0,0 +1,5 @@
|
||||
<html>
|
||||
<body>
|
||||
Converts an anonymous object literal implementing a Java interface with single abstract method into call with lambda expression.
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user