You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by tn...@apache.org on 2013/01/22 12:03:31 UTC

svn commit: r1436835 - in /commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/buffer: BoundedBuffer.java PredicatedBuffer.java

Author: tn
Date: Tue Jan 22 11:03:31 2013
New Revision: 1436835

URL: http://svn.apache.org/viewvc?rev=1436835&view=rev
Log:
Formatting: line length.

Modified:
    commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/buffer/BoundedBuffer.java
    commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/buffer/PredicatedBuffer.java

Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/buffer/BoundedBuffer.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/buffer/BoundedBuffer.java?rev=1436835&r1=1436834&r2=1436835&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/buffer/BoundedBuffer.java (original)
+++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/buffer/BoundedBuffer.java Tue Jan 22 11:03:31 2013
@@ -82,7 +82,8 @@ public class BoundedBuffer<E> extends Sy
      * @throws IllegalArgumentException if the buffer is null
      * @throws IllegalArgumentException if the maximum size is zero or less
      */
-    public static <E> BoundedBuffer<E> boundedBuffer(final Buffer<E> buffer, final int maximumSize, final long timeout) {
+    public static <E> BoundedBuffer<E> boundedBuffer(final Buffer<E> buffer, final int maximumSize,
+                                                     final long timeout) {
         return new BoundedBuffer<E>(buffer, maximumSize, timeout);
     }
 

Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/buffer/PredicatedBuffer.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/buffer/PredicatedBuffer.java?rev=1436835&r1=1436834&r2=1436835&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/buffer/PredicatedBuffer.java (original)
+++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/buffer/PredicatedBuffer.java Tue Jan 22 11:03:31 2013
@@ -54,7 +54,8 @@ public class PredicatedBuffer<E> extends
      * @throws IllegalArgumentException if buffer or predicate is null
      * @throws IllegalArgumentException if the buffer contains invalid elements
      */
-    public static <E> PredicatedBuffer<E> predicatedBuffer(final Buffer<E> buffer, final Predicate<? super E> predicate) {
+    public static <E> PredicatedBuffer<E> predicatedBuffer(final Buffer<E> buffer,
+                                                           final Predicate<? super E> predicate) {
         return new PredicatedBuffer<E>(buffer, predicate);
     }