@@ -146,9 +146,9 @@ public void processRequest(QueueingConsumer.Delivery request)
146146 {
147147 AMQP .BasicProperties .Builder replyPropertiesBuilder
148148 = new AMQP .BasicProperties .Builder ().correlationId (correlationId );
149- AMQP .BasicProperties replyProperties = preProcessReplyProperties (request , replyPropertiesBuilder );
149+ AMQP .BasicProperties replyProperties = preprocessReplyProperties (request , replyPropertiesBuilder );
150150 byte [] replyBody = handleCall (request , replyProperties );
151- replyProperties = postProcessReplyProperties (request , replyProperties .builder ());
151+ replyProperties = postprocessReplyProperties (request , replyProperties .builder ());
152152 _channel .basicPublish ("" , replyTo , replyProperties , replyBody );
153153 } else {
154154 handleCast (request );
@@ -196,7 +196,7 @@ public byte[] handleCall(byte[] requestBody,
196196 * @param builder the reply properties builder
197197 * @return the properties to pass in to the handling call
198198 */
199- protected AMQP .BasicProperties preProcessReplyProperties (QueueingConsumer .Delivery request , AMQP .BasicProperties .Builder builder ) {
199+ protected AMQP .BasicProperties preprocessReplyProperties (QueueingConsumer .Delivery request , AMQP .BasicProperties .Builder builder ) {
200200 return builder .build ();
201201 }
202202
@@ -206,7 +206,7 @@ protected AMQP.BasicProperties preProcessReplyProperties(QueueingConsumer.Delive
206206 * @param builder the reply properties builder
207207 * @return the properties to pass in to the response message
208208 */
209- protected AMQP .BasicProperties postProcessReplyProperties (QueueingConsumer .Delivery request , AMQP .BasicProperties .Builder builder ) {
209+ protected AMQP .BasicProperties postprocessReplyProperties (QueueingConsumer .Delivery request , AMQP .BasicProperties .Builder builder ) {
210210 return builder .build ();
211211 }
212212
0 commit comments