Skip to content

Commit c7e0842

Browse files
committed
Make ClassPathEntry.sourceJar null by default
1 parent 00a14b6 commit c7e0842

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

shared/src/main/kotlin/org/javacs/kt/classpath/ClassPathEntry.kt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,7 @@ package org.javacs.kt.classpath
22

33
import java.nio.file.Path
44

5-
data class ClassPathEntry(val compiledJar: Path, val sourceJar: Path?)
5+
data class ClassPathEntry(
6+
val compiledJar: Path,
7+
val sourceJar: Path? = null
8+
)

0 commit comments

Comments
 (0)