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

michaelo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-filtering.git


The following commit(s) were added to refs/heads/master by this push:
     new 456b03a  (doc) Remove explicit `final` modifier
456b03a is described below

commit 456b03a9510f1e64e457f393a4e04cbeeebd9538
Author: Piotrek Żygieło <pzygi...@users.noreply.github.com>
AuthorDate: Fri Sep 30 12:33:59 2022 +0200

    (doc) Remove explicit `final` modifier
---
 src/main/java/org/apache/maven/shared/filtering/FilteringUtils.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/src/main/java/org/apache/maven/shared/filtering/FilteringUtils.java 
b/src/main/java/org/apache/maven/shared/filtering/FilteringUtils.java
index b7690e0..3112d3c 100644
--- a/src/main/java/org/apache/maven/shared/filtering/FilteringUtils.java
+++ b/src/main/java/org/apache/maven/shared/filtering/FilteringUtils.java
@@ -404,7 +404,7 @@ public final class FilteringUtils
                     int existingRead;
                     boolean writing = false;
 
-                    try ( final RandomAccessFile existing = new 
RandomAccessFile( to, "rw" ) )
+                    try ( RandomAccessFile existing = new RandomAccessFile( 
to, "rw" ) )
                     {
                         int n;
                         while ( -1 != ( n = wrapped.read( newChars ) ) )

Reply via email to