> + * @author Ignacio Mulas
> + */
> +@Test(groups = "unit", testName = "PATCHAnnotationExpectTest")
> +public class PATCHAnnotationExpectTest extends
> +
> BaseRestClientExpectTest<PATCHAnnotationExpectTest.TestPATCHAnnotationApi> {
> +
> + interface TestPATCHAnnotationApi extends Closeable {
> + HttpResponse method();
> + }
> +
> + interface TestPATCHAnnotationAsyncApi extends Closeable {
> + @PATCH
> + @Path("/PATCH/annotation")
> + ListenableFuture<HttpResponse> method();
> + }
> +
Async interfaces have been deprecated. You should be able to remove this
interface and move the annotations to the `TestPATCHAnnotationApi` one.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/201/files#r7594196