Skip to content

Commit

Permalink
Get rid of Guava dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
vogti committed Jun 7, 2022
1 parent f8bc32f commit 6c0d3c1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ java {

dependencies {
implementation group: 'com.konghq', name: 'unirest-java', version: '3.13.10'
implementation group: 'com.google.guava', name: 'guava', version: '31.1-jre'

implementation group: 'commons-validator', name: 'commons-validator', version: '1.7'
implementation group: 'commons-net', name: 'commons-net', version: '3.8.0'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ of this software and associated documentation files (the "Software"), to deal

import ch.unibas.dmi.dbis.chronos.agent.ChronosHttpClient.ChronosLogHandler;
import ch.unibas.dmi.dbis.chronos.agent.ChronosHttpClient.JobPhase;
import com.google.common.io.Files;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
Expand All @@ -37,6 +36,7 @@ of this software and associated documentation files (the "Software"), to deal
import java.net.UnknownHostException;
import java.nio.charset.Charset;
import java.nio.charset.StandardCharsets;
import java.nio.file.Files;
import java.util.Arrays;
import java.util.Map;
import java.util.NoSuchElementException;
Expand Down Expand Up @@ -195,7 +195,7 @@ public void run() {
// (3) --

// (4) Create environment
final File tempDirectory = Files.createTempDir();
final File tempDirectory = Files.createTempDirectory( "chronos" ).toFile();
tempDirectory.deleteOnExit();

final File inputDirectory = new File( tempDirectory, "input" );
Expand Down

0 comments on commit 6c0d3c1

Please sign in to comment.