Skip to content

Commit 24cde05

Browse files
author
Johannes Düsing
committed
Removed unused libraries and unused code
1 parent 593288e commit 24cde05

File tree

2 files changed

+0
-18
lines changed

2 files changed

+0
-18
lines changed

build.sbt

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -41,17 +41,9 @@ wixProductUpgradeId := "4552fb0e-e257-4dbd-9ecb-dba9dbacf424"
4141

4242
scalastyleConfig := baseDirectory.value / "project" / "scalastyle_config.xml"
4343

44-
val http4sVersion = "0.21.0-M6"
45-
4644
// Only necessary for SNAPSHOT releases
4745
resolvers += Resolver.sonatypeRepo("snapshots")
4846

49-
libraryDependencies ++= Seq(
50-
"org.http4s" %% "http4s-dsl" % http4sVersion,
51-
"org.http4s" %% "http4s-blaze-client" % http4sVersion,
52-
"org.http4s" %% "http4s-circe" % http4sVersion
53-
)
54-
5547
libraryDependencies += "com.github.scopt" %% "scopt" % "3.7.1"
5648
libraryDependencies += "io.spray" %% "spray-json" % "1.3.5"
5749
libraryDependencies += "de.vandermeer" % "asciitable" % "0.3.2"

src/main/scala/de/upb/cs/swt/delphi/cli/DelphiCLI.scala

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,6 @@ object DelphiCLI {
2929

3030
def main(args: Array[String]): Unit = {
3131

32-
def getEnvOrElse(envVar: String, defaultPath: String) = sys.env.getOrElse(envVar, defaultPath)
33-
34-
val javaLibPath = getEnvOrElse("JAVA_LIB_PATH", "/usr/lib/jvm/default-java/lib/")
35-
36-
val trustStorePath = getEnvOrElse("JAVA_TRUSTSTORE", "/usr/lib/jvm/default-java/lib/security/cacerts")
37-
38-
// This only is allowed to be set for GraalVM compiles...
39-
//System.setProperty("java.library.path", javaLibPath)
40-
//System.setProperty("javax.net.ssl.trustStore", trustStorePath)
41-
4232
cliParser.parse(args, Config()) match {
4333
case Some(c) =>
4434

0 commit comments

Comments
 (0)