Skip to content

Commit

Permalink
Remove override annotation from snippets to avoid breaking javadoc (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
mziccard authored Sep 28, 2016
1 parent 0e61bd3 commit 007c153
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -557,7 +557,6 @@ public void pullAsync(String subscriptionName) throws ExecutionException, Interr
public void pullWithMessageConsumer(String subscriptionName) throws Exception {
// [START pullWithMessageConsumer]
MessageProcessor callback = new MessageProcessor() {
@Override
public void process(Message message) throws Exception {
// Ack deadline is renewed until this method returns
// Message is acked if this method returns successfully
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,6 @@ public void pullAsync() throws ExecutionException, InterruptedException {
public void pullWithMessageConsumer(String subscriptionName) throws Exception {
// [START pullWithMessageConsumer]
MessageProcessor callback = new MessageProcessor() {
@Override
public void process(Message message) throws Exception {
// Ack deadline is renewed until this method returns
// Message is acked if this method returns successfully
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -771,7 +771,6 @@ interface MessageConsumer extends AutoCloseable {
* <pre> {@code
* String subscriptionName = "my_subscription_name";
* MessageProcessor callback = new MessageProcessor() {
* @Override
* public void process(Message message) throws Exception {
* // Ack deadline is renewed until this method returns
* // Message is acked if this method returns successfully
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,6 @@ public Future<Iterator<ReceivedMessage>> pullAsync(int maxMessages) {
* <pre> {@code
* String subscriptionName = "my_subscription_name";
* MessageProcessor callback = new MessageProcessor() {
* @Override
* public void process(Message message) throws Exception {
* // Ack deadline is renewed until this method returns
* // Message is acked if this method returns successfully
Expand Down

0 comments on commit 007c153

Please sign in to comment.