@@ -146,9 +146,9 @@ public void processRequest(QueueingConsumer.Delivery request)
146
146
{
147
147
AMQP .BasicProperties .Builder replyPropertiesBuilder
148
148
= new AMQP .BasicProperties .Builder ().correlationId (correlationId );
149
- AMQP .BasicProperties replyProperties = preProcessReplyProperties (request , replyPropertiesBuilder );
149
+ AMQP .BasicProperties replyProperties = preprocessReplyProperties (request , replyPropertiesBuilder );
150
150
byte [] replyBody = handleCall (request , replyProperties );
151
- replyProperties = postProcessReplyProperties (request , replyProperties .builder ());
151
+ replyProperties = postprocessReplyProperties (request , replyProperties .builder ());
152
152
_channel .basicPublish ("" , replyTo , replyProperties , replyBody );
153
153
} else {
154
154
handleCast (request );
@@ -196,7 +196,7 @@ public byte[] handleCall(byte[] requestBody,
196
196
* @param builder the reply properties builder
197
197
* @return the properties to pass in to the handling call
198
198
*/
199
- protected AMQP .BasicProperties preProcessReplyProperties (QueueingConsumer .Delivery request , AMQP .BasicProperties .Builder builder ) {
199
+ protected AMQP .BasicProperties preprocessReplyProperties (QueueingConsumer .Delivery request , AMQP .BasicProperties .Builder builder ) {
200
200
return builder .build ();
201
201
}
202
202
@@ -206,7 +206,7 @@ protected AMQP.BasicProperties preProcessReplyProperties(QueueingConsumer.Delive
206
206
* @param builder the reply properties builder
207
207
* @return the properties to pass in to the response message
208
208
*/
209
- protected AMQP .BasicProperties postProcessReplyProperties (QueueingConsumer .Delivery request , AMQP .BasicProperties .Builder builder ) {
209
+ protected AMQP .BasicProperties postprocessReplyProperties (QueueingConsumer .Delivery request , AMQP .BasicProperties .Builder builder ) {
210
210
return builder .build ();
211
211
}
212
212
0 commit comments