Skip to content

Commit 06f8ba9

Browse files
committed
Move ClassPathEntry into separate module
1 parent 4e92003 commit 06f8ba9

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ package org.javacs.kt.classpath
33
import org.javacs.kt.LOG
44
import java.nio.file.Path
55

6-
data class ClassPathEntry(val compiledJar: Path, val sourceJar: Path?)
7-
86
/** A source for creating class paths */
97
interface ClassPathResolver {
108
val resolverType: String

0 commit comments

Comments
 (0)