Label.java converted to Kotlin

(cherry picked from commit 3891d76)
This commit is contained in:
Mikhail Glukhikh
2016-08-24 14:27:09 +03:00
committed by Mikhail Glukhikh
parent ea041661fb
commit 41ff51ca8c
@@ -14,11 +14,8 @@
* limitations under the License.
*/
package org.jetbrains.kotlin.cfg;
package org.jetbrains.kotlin.cfg
import org.jetbrains.annotations.NotNull;
public interface Label {
@NotNull
String getName();
interface Label {
val name: String
}