Skip to content

Commit

Permalink
remove fatal errors
Browse files Browse the repository at this point in the history
  • Loading branch information
kitlangton committed Jun 28, 2022
1 parent 8732519 commit 99f2392
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ lazy val root = (project in file("."))
scalacOptions ++= Seq(
"-deprecation",
"-unchecked",
"-Wunused",
"-Xfatal-warnings"
"-Wunused"
// "-Xfatal-warnings"
)
)
.enablePlugins(GraalVMNativeImagePlugin)
Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/update/DependencyParser.scala
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ object DependencyParser {

def getDependencies(sources: Chunk[SourceFile]): Chunk[DependencyWithLocation] = {
val versionDefs = parseVersionDefs(sources)
val builder = ChunkBuilder.make[DependencyWithLocation]
val builder = ChunkBuilder.make[DependencyWithLocation]()

sources.foreach { source =>
source.tree.traverse {
Expand Down

0 comments on commit 99f2392

Please sign in to comment.