This is an automated email from the ASF dual-hosted git repository.

jinmeiliao pushed a commit to branch feature/GEODE-7665
in repository https://gitbox.apache.org/repos/asf/geode.git

commit ef0b7ec0e4146499da56b29453fe89011d632578
Author: Kirk Lund <kl...@apache.org>
AuthorDate: Thu Apr 15 17:08:52 2021 -0700

    GEODE-9132: Undelete unnecessary uses of final
---
 .../apache/geode/internal/cache/PartitionedRegionClearMessage.java | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git 
a/geode-core/src/main/java/org/apache/geode/internal/cache/PartitionedRegionClearMessage.java
 
b/geode-core/src/main/java/org/apache/geode/internal/cache/PartitionedRegionClearMessage.java
index 36cdcb6..cd33f78 100755
--- 
a/geode-core/src/main/java/org/apache/geode/internal/cache/PartitionedRegionClearMessage.java
+++ 
b/geode-core/src/main/java/org/apache/geode/internal/cache/PartitionedRegionClearMessage.java
@@ -61,7 +61,8 @@ public class PartitionedRegionClearMessage extends 
PartitionMessage {
 
   PartitionedRegionClearMessage(Set<InternalDistributedMember> recipients,
       PartitionedRegion partitionedRegion, ReplyProcessor21 replyProcessor21,
-      PartitionedRegionClearMessage.OperationType operationType, 
RegionEventImpl regionEvent) {
+      PartitionedRegionClearMessage.OperationType operationType,
+      final RegionEventImpl regionEvent) {
     super(recipients, partitionedRegion.getPRId(), replyProcessor21);
     this.partitionedRegion = partitionedRegion;
     this.operationType = operationType;
@@ -234,8 +235,8 @@ public class PartitionedRegionClearMessage extends 
PartitionMessage {
      * @param distributionManager the distribution manager that is processing 
the message.
      */
     @Override
-    public void process(DistributionManager distributionManager,
-        ReplyProcessor21 replyProcessor21) {
+    public void process(final DistributionManager distributionManager,
+        final ReplyProcessor21 replyProcessor21) {
       long startTime = getTimestamp();
 
       if (replyProcessor21 == null) {

Reply via email to