Skip to content

Commit

Permalink
reorganizing imports
Browse files Browse the repository at this point in the history
  • Loading branch information
KnollFrank committed Jan 7, 2025
1 parent 236ef8e commit 6000d65
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions OsmAnd-java/src/test/java/net/osmand/router/RouteTestingTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,6 @@

import static net.osmand.util.RouterUtilTest.getNativeLibPath;

import com.google.gson.Gson;
import com.google.gson.GsonBuilder;

import net.osmand.NativeLibrary;
import net.osmand.binary.BinaryMapIndexReader;
import net.osmand.router.RoutingConfiguration.RoutingMemoryLimits;
import net.osmand.util.RouterUtilTest;

import org.junit.Assert;
import org.junit.BeforeClass;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;

import java.io.File;
import java.io.IOException;
import java.io.InputStreamReader;
Expand All @@ -29,6 +15,20 @@
import java.util.Set;
import java.util.TreeSet;

import org.junit.Assert;
import org.junit.BeforeClass;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;

import com.google.gson.Gson;
import com.google.gson.GsonBuilder;

import net.osmand.NativeLibrary;
import net.osmand.binary.BinaryMapIndexReader;
import net.osmand.router.RoutingConfiguration.RoutingMemoryLimits;
import net.osmand.util.RouterUtilTest;

@RunWith(Parameterized.class)
public class RouteTestingTest {
private final TestEntry te;
Expand Down

0 comments on commit 6000d65

Please sign in to comment.