From 5574fa8b7c1e7b2b5de904696fd0ceb672cca9ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Sch=C3=B6nberg?= Date: Fri, 26 May 2017 22:45:12 +0200 Subject: [PATCH] Android studio import ordering --- .../java/fr/free/nrw/commons/NearbyControllerTest.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/src/androidTest/java/fr/free/nrw/commons/NearbyControllerTest.java b/app/src/androidTest/java/fr/free/nrw/commons/NearbyControllerTest.java index e26c42265..585b5709f 100644 --- a/app/src/androidTest/java/fr/free/nrw/commons/NearbyControllerTest.java +++ b/app/src/androidTest/java/fr/free/nrw/commons/NearbyControllerTest.java @@ -4,11 +4,6 @@ import android.content.Context; import android.support.test.InstrumentationRegistry; import android.support.test.runner.AndroidJUnit4; -import fr.free.nrw.commons.location.LatLng; -import fr.free.nrw.commons.nearby.NearbyBaseMarker; -import fr.free.nrw.commons.nearby.NearbyController; -import fr.free.nrw.commons.nearby.Place; - import org.junit.Assert; import org.junit.Before; import org.junit.Test; @@ -17,6 +12,11 @@ import org.junit.runner.RunWith; import java.util.ArrayList; import java.util.List; +import fr.free.nrw.commons.location.LatLng; +import fr.free.nrw.commons.nearby.NearbyBaseMarker; +import fr.free.nrw.commons.nearby.NearbyController; +import fr.free.nrw.commons.nearby.Place; + import static org.hamcrest.CoreMatchers.is; @RunWith(AndroidJUnit4.class)