Skip to content

Commit 4b76123

Browse files
author
Matthew Sackman
committed
Make it clearer that this isn't a verb, but an adjective
1 parent 380d3ab commit 4b76123

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

test/src/com/rabbitmq/client/test/functional/PersistentTransactions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ protected BasicProperties getMessageProperties() {
4141
}
4242

4343
@Override
44-
protected boolean declareDurableQueues() {
44+
protected boolean declareQueuesDurable() {
4545
return true;
4646
}
4747

test/src/com/rabbitmq/client/test/functional/TransactionsBase.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,10 @@ protected void setUp()
5555
}
5656

5757
protected void createResources() throws IOException {
58-
channel.queueDeclare(Q, declareDurableQueues(), false, false, null);
58+
channel.queueDeclare(Q, declareQueuesDurable(), false, false, null);
5959
}
6060

61-
protected boolean declareDurableQueues() {
61+
protected boolean declareQueuesDurable() {
6262
return false;
6363
}
6464

0 commit comments

Comments
 (0)