Skip to content

Commit

Permalink
fix incorrect use of jcommander dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
rakow committed Feb 21, 2024
1 parent dec4489 commit 43d1c6c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package org.matsim.application.analysis.traffic;

import com.beust.jcommander.internal.Lists;
import com.google.common.collect.Lists;
import it.unimi.dsi.fastutil.doubles.DoubleArrayList;
import it.unimi.dsi.fastutil.doubles.DoubleList;
import it.unimi.dsi.fastutil.ints.Int2ObjectMap;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package org.matsim.application.prepare;

import com.beust.jcommander.internal.Lists;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.geotools.data.DataStore;
Expand All @@ -24,6 +23,7 @@
import java.nio.file.FileSystems;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Set;
Expand Down Expand Up @@ -90,7 +90,7 @@ public Integer call() throws Exception {
STRtree index = new STRtree();
boolean built = false;

List<Path> paths = Lists.newArrayList();
List<Path> paths =new ArrayList<>();
if (input.toString().endsWith("zip")) {
FileSystem fs = FileSystems.newFileSystem(input, ClassLoader.getSystemClassLoader());
for (String l : layer) {
Expand Down

0 comments on commit 43d1c6c

Please sign in to comment.