Skip to content

Commit

Permalink
Update kotlin code from intellij and suppress errors
Browse files Browse the repository at this point in the history
  • Loading branch information
jxnu-liguobin committed Dec 16, 2023
1 parent 0a0aac1 commit 07ffd3a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ import com.intellij.openapi.project.Project
import com.intellij.util.containers.DisposableWrapperList

internal class DependencyAnalyzerVirtualFile(
private val project: Project,
private val systemId: ProjectSystemId
private val project: Project, private val systemId: ProjectSystemId
) : UIComponentVirtualFile(
ExternalSystemBundle.message("external.system.dependency.analyzer.editor.tab.name"),
AllIcons.Actions.DependencyAnalyzer
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ data class SbtDAArtifact(
override val artifactId: String,
override val version: String,
val size: Long,
val totalSize:Long
val totalSize: Long
) : UserDataHolderBase(), Dependency.Data.Artifact {
override fun toString() = "$groupId:$artifactId:$version"
}

0 comments on commit 07ffd3a

Please sign in to comment.