Skip to content

Commit 85094d2

Browse files
committed
Remove whitespace between class head and methods
1 parent 02f9df5 commit 85094d2

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

server/src/main/kotlin/org/javacs/kt/codeaction/quickfixes/ImplementAbstractFunctionsQuickFix.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ import org.jetbrains.kotlin.resolve.diagnostics.Diagnostics
2020
private const val DEFAULT_TAB_SIZE = 4
2121

2222
class ImplementAbstractFunctionsQuickFix : QuickFix {
23-
2423
override fun compute(file: CompiledFile, range: Range, diagnostics: List<Diagnostic>): Either<Command, CodeAction>? {
2524
val diagnostic = findDiagnosticMatch(diagnostics, range)
2625

server/src/main/kotlin/org/javacs/kt/codeaction/quickfixes/QuickFix.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ import org.jetbrains.kotlin.resolve.diagnostics.Diagnostics
1010
import org.jetbrains.kotlin.diagnostics.Diagnostic as KotlinDiagnostic
1111

1212
interface QuickFix {
13-
1413
// Computes the quickfix. Return null if the quickfix is not valid.
1514
fun compute(file: CompiledFile, range: Range, diagnostics: List<Diagnostic>): Either<Command, CodeAction>?
1615
}

0 commit comments

Comments
 (0)