Minor: drop semicolon in package declaration everywhere.

This commit is contained in:
Zalim Bashorov
2014-09-11 21:22:42 +04:00
parent 0f136d5adc
commit 30208d5532
60 changed files with 87 additions and 87 deletions
@@ -1,6 +1,6 @@
// PSI_ELEMENT: org.jetbrains.jet.lang.psi.JetNamedFunction
// OPTIONS: usages
package testing;
package testing
public open class Server() {
public open fun <caret>processRequest() = "foo"
@@ -1,6 +1,6 @@
// PSI_ELEMENT: org.jetbrains.jet.lang.psi.JetNamedFunction
// OPTIONS: usages
package server;
package server
public open class Server() {
open fun <caret>processRequest() = "foo"
@@ -1,6 +1,6 @@
// PSI_ELEMENT: org.jetbrains.jet.lang.psi.JetNamedFunction
// OPTIONS: usages
package server;
package server
public open class Server() {
private fun <caret>doProcessRequest() = "foo"
@@ -1,6 +1,6 @@
// PSI_ELEMENT: org.jetbrains.jet.lang.psi.JetNamedFunction
// OPTIONS: usages
package server;
package server
fun <caret>processRequest() = "foo"
@@ -1,6 +1,6 @@
// PSI_ELEMENT: org.jetbrains.jet.lang.psi.JetNamedFunction
// OPTIONS: usages, skipImports
package server;
package server
fun <caret>processRequest() = "foo"