Skip to content

Commit

Permalink
Tidy imports
Browse files Browse the repository at this point in the history
  • Loading branch information
dsyer committed Dec 9, 2014
1 parent b73ecd0 commit 84d6327
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,13 @@
*/
package example.customers.integration;

import com.netflix.hystrix.contrib.javanica.annotation.HystrixCommand;
import java.net.URI;
import java.util.Map;

import lombok.Getter;
import lombok.Setter;
import lombok.extern.slf4j.Slf4j;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.cloud.client.ServiceInstance;
Expand All @@ -29,8 +32,7 @@
import org.springframework.http.HttpHeaders;
import org.springframework.stereotype.Component;

import java.net.URI;
import java.util.Map;
import com.netflix.hystrix.contrib.javanica.annotation.HystrixCommand;

/**
* @author Oliver Gierke
Expand Down Expand Up @@ -79,7 +81,6 @@ public Link getStoresByLocationLink(Map<String, Object> parameters, HttpHeaders
return link;
}

@SuppressWarnings("unused")
public Link defaultLink(Map<String, Object> parameters, HttpHeaders headers) {
return null;
}
Expand Down

0 comments on commit 84d6327

Please sign in to comment.