bad test fixed

git-svn-id: http://jclouds.googlecode.com/svn/trunk@2654 3d8758e0-26b5-11de-8745-db77d3ebf521
This commit is contained in:
adrian.f.cole 2010-01-14 16:50:50 +00:00
parent ffbc1bb004
commit 2e138bebe3
2 changed files with 0 additions and 7 deletions

View File

@ -18,7 +18,6 @@
*/
package org.jclouds.http;
import java.net.URI;
import java.util.Map;
import javax.ws.rs.GET;
@ -33,7 +32,6 @@ import org.jclouds.http.functions.ParseSax;
import org.jclouds.http.options.HttpRequestOptions;
import org.jclouds.rest.annotations.BinderParam;
import org.jclouds.rest.annotations.Endpoint;
import org.jclouds.rest.annotations.EndpointParam;
import org.jclouds.rest.annotations.ExceptionParser;
import org.jclouds.rest.annotations.MapBinder;
import org.jclouds.rest.annotations.MapPayloadParam;
@ -138,9 +136,6 @@ public interface IntegrationTestAsyncClient {
@GET
@Path("objects/{id}")
ListenableFuture<String> download(@PathParam("id") String id, @HeaderParam("test") String header);
@GET
ListenableFuture<String> download(@EndpointParam URI endpoint);
@GET
@Path("objects/{id}")

View File

@ -60,6 +60,4 @@ public interface IntegrationTestClient {
String downloadAndParse(String id);
StringBuffer newStringBuffer();
String download(URI endpoint);
}