We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e92003 commit 06f8ba9Copy full SHA for 06f8ba9
shared/src/main/kotlin/org/javacs/kt/classpath/ClassPathEntry.kt
@@ -0,0 +1,5 @@
1
+package org.javacs.kt.classpath
2
+
3
+import java.nio.file.Path
4
5
+data class ClassPathEntry(val compiledJar: Path, val sourceJar: Path?)
shared/src/main/kotlin/org/javacs/kt/classpath/ClassPathResolver.kt
@@ -3,8 +3,6 @@ package org.javacs.kt.classpath
import org.javacs.kt.LOG
import java.nio.file.Path
6
-data class ClassPathEntry(val compiledJar: Path, val sourceJar: Path?)
7
-
8
/** A source for creating class paths */
9
interface ClassPathResolver {
10
val resolverType: String
0 commit comments