Commit 189d926c by Luke Tornquist

Correct import order

parent d993fe21
...@@ -16,16 +16,7 @@ ...@@ -16,16 +16,7 @@
package org.springframework.cloud.netflix.feign.support; package org.springframework.cloud.netflix.feign.support;
import feign.FeignException; import static org.springframework.cloud.netflix.feign.support.FeignUtils.getHttpHeaders;
import feign.Response;
import feign.codec.DecodeException;
import feign.codec.Decoder;
import org.springframework.beans.factory.ObjectFactory;
import org.springframework.boot.autoconfigure.web.HttpMessageConverters;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpStatus;
import org.springframework.http.client.ClientHttpResponse;
import org.springframework.web.client.HttpMessageConverterExtractor;
import java.io.IOException; import java.io.IOException;
import java.io.InputStream; import java.io.InputStream;
...@@ -33,7 +24,17 @@ import java.lang.reflect.ParameterizedType; ...@@ -33,7 +24,17 @@ import java.lang.reflect.ParameterizedType;
import java.lang.reflect.Type; import java.lang.reflect.Type;
import java.lang.reflect.WildcardType; import java.lang.reflect.WildcardType;
import static org.springframework.cloud.netflix.feign.support.FeignUtils.getHttpHeaders; import org.springframework.beans.factory.ObjectFactory;
import org.springframework.boot.autoconfigure.web.HttpMessageConverters;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpStatus;
import org.springframework.http.client.ClientHttpResponse;
import org.springframework.web.client.HttpMessageConverterExtractor;
import feign.FeignException;
import feign.Response;
import feign.codec.DecodeException;
import feign.codec.Decoder;
/** /**
* @author Spencer Gibb * @author Spencer Gibb
......
...@@ -16,9 +16,15 @@ ...@@ -16,9 +16,15 @@
package org.springframework.cloud.netflix.feign; package org.springframework.cloud.netflix.feign;
import lombok.AllArgsConstructor; import static org.junit.Assert.assertEquals;
import lombok.Data; import static org.junit.Assert.assertNotNull;
import lombok.NoArgsConstructor; import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertTrue;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import org.junit.Test; import org.junit.Test;
import org.junit.runner.RunWith; import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
...@@ -37,11 +43,9 @@ import org.springframework.web.bind.annotation.RequestMapping; ...@@ -37,11 +43,9 @@ import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController; import org.springframework.web.bind.annotation.RestController;
import java.util.ArrayList; import lombok.AllArgsConstructor;
import java.util.List; import lombok.Data;
import java.util.Map; import lombok.NoArgsConstructor;
import static org.junit.Assert.*;
/** /**
* @author Spencer Gibb * @author Spencer Gibb
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment