Commit 619e8b9c1bff9f43521a720fcacb82180f2d7cc3

Authored by gibran
1 parent 36c16f0d

Remoção de "import's" não utilizados.

src/main/java/br/com/ases/infra/WebChecker.java
... ... @@ -3,12 +3,10 @@ package br.com.ases.infra;
3 3 import static br.com.checker.emag.core.Checker.presentation;
4 4  
5 5 import java.io.IOException;
6   -import java.text.NumberFormat;
7 6 import java.util.ArrayList;
8 7 import java.util.List;
9 8  
10 9 import org.apache.commons.httpclient.DefaultHttpMethodRetryHandler;
11   -import org.apache.commons.httpclient.Header;
12 10 import org.apache.commons.httpclient.HttpClient;
13 11 import org.apache.commons.httpclient.HttpException;
14 12 import org.apache.commons.httpclient.HttpMethod;
... ... @@ -28,6 +26,7 @@ public class WebChecker {
28 26 private int statusCode;
29 27 private String content;
30 28 private String contentLength;
  29 +
31 30  
32 31 private WebChecker(HttpClient client,String url) {
33 32 this.client = client;
... ...