Skip to content

Commit

Permalink
fix documentation code
Browse files Browse the repository at this point in the history
  • Loading branch information
thboileau committed Dec 19, 2024
1 parent ac97282 commit 1f6dd65
Showing 1 changed file with 7 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -175,15 +175,16 @@ edition of the Restlet Framework):


<pre class="language-java"><code class="language-java">public interface ContactResourceProxy extends ClientProxy {
    @Get
    public void retrieve(Result<Contact> callback);
@Get
public void retrieve(Result<Contact> callback);

   @Put
    public void store(Contact contact, Result<Void> callback);
@Put
public void store(Contact contact, Result<Void> callback);

    @Delete
    public void remove(Result<Void> callback);
@Delete
public void remove(Result<Void> callback);
}

</code></pre>


Expand Down

0 comments on commit 1f6dd65

Please sign in to comment.