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

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-io.git


The following commit(s) were added to refs/heads/master by this push:
     new 772d7c4  Remove "p" prefix.
772d7c4 is described below

commit 772d7c44f1503b969897712f7c111fb724e73aec
Author: Gary Gregory <gardgreg...@gmail.com>
AuthorDate: Mon Feb 1 10:35:12 2021 -0500

    Remove "p" prefix.
---
 .../java/org/apache/commons/io/input/buffer/CircularByteBuffer.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git 
a/src/main/java/org/apache/commons/io/input/buffer/CircularByteBuffer.java 
b/src/main/java/org/apache/commons/io/input/buffer/CircularByteBuffer.java
index 46fb1c3..9fe452e 100644
--- a/src/main/java/org/apache/commons/io/input/buffer/CircularByteBuffer.java
+++ b/src/main/java/org/apache/commons/io/input/buffer/CircularByteBuffer.java
@@ -36,10 +36,10 @@ public class CircularByteBuffer {
     /**
      * Creates a new instance with the given buffer size.
      *
-     * @param pSize the size of buffer to create
+     * @param size the size of buffer to create
      */
-    public CircularByteBuffer(final int pSize) {
-        buffer = new byte[pSize];
+    public CircularByteBuffer(final int size) {
+        buffer = new byte[size];
         startOffset = 0;
         endOffset = 0;
         currentNumberOfBytes = 0;

Reply via email to