Return-Path: X-Original-To: apmail-commons-commits-archive@minotaur.apache.org Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 84B0E10897 for ; Tue, 19 Nov 2013 00:53:02 +0000 (UTC) Received: (qmail 95470 invoked by uid 500); 19 Nov 2013 00:53:02 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 95374 invoked by uid 500); 19 Nov 2013 00:53:02 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 95367 invoked by uid 99); 19 Nov 2013 00:53:02 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 19 Nov 2013 00:53:02 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 19 Nov 2013 00:53:01 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 3F6F123889BB; Tue, 19 Nov 2013 00:52:41 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1543273 - /commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/set/CompositeSet.java Date: Tue, 19 Nov 2013 00:52:41 -0000 To: commits@commons.apache.org From: ggregory@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20131119005241.3F6F123889BB@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: ggregory Date: Tue Nov 19 00:52:40 2013 New Revision: 1543273 URL: http://svn.apache.org/r1543273 Log: Remove redundant use of public modifier. Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/set/CompositeSet.java Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/set/CompositeSet.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/set/CompositeSet.java?rev=1543273&r1=1543272&r2=1543273&view=diff ============================================================================== --- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/set/CompositeSet.java (original) +++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/set/CompositeSet.java Tue Nov 19 00:52:40 2013 @@ -460,7 +460,7 @@ public class CompositeSet implements * @throws NullPointerException if the object cannot be added because its null * @throws IllegalArgumentException if the object cannot be added */ - public boolean add(CompositeSet composite, List> sets, E obj); + boolean add(CompositeSet composite, List> sets, E obj); /** * Called when a collection is to be added to the composite. @@ -474,7 +474,7 @@ public class CompositeSet implements * @throws NullPointerException if the object cannot be added because its null * @throws IllegalArgumentException if the object cannot be added */ - public boolean addAll(CompositeSet composite, + boolean addAll(CompositeSet composite, List> sets, Collection coll); @@ -490,7 +490,7 @@ public class CompositeSet implements * @param added the Set being added to the composite * @param intersects the intersection of the existing and added sets */ - public void resolveCollision(CompositeSet comp, + void resolveCollision(CompositeSet comp, Set existing, Set added, Collection intersects);