Return-Path: X-Original-To: apmail-pdfbox-commits-archive@www.apache.org Delivered-To: apmail-pdfbox-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 7216617AC5 for ; Thu, 15 Jan 2015 22:14:17 +0000 (UTC) Received: (qmail 87507 invoked by uid 500); 15 Jan 2015 22:14:19 -0000 Delivered-To: apmail-pdfbox-commits-archive@pdfbox.apache.org Received: (qmail 87483 invoked by uid 500); 15 Jan 2015 22:14:19 -0000 Mailing-List: contact commits-help@pdfbox.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@pdfbox.apache.org Delivered-To: mailing list commits@pdfbox.apache.org Received: (qmail 87473 invoked by uid 99); 15 Jan 2015 22:14:19 -0000 Received: from eris.apache.org (HELO hades.apache.org) (140.211.11.105) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 15 Jan 2015 22:14:19 +0000 Received: from hades.apache.org (localhost [127.0.0.1]) by hades.apache.org (ASF Mail Server at hades.apache.org) with ESMTP id 0CD2CAC003F; Thu, 15 Jan 2015 22:14:19 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1652285 - /pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/cos/ICOSVisitor.java Date: Thu, 15 Jan 2015 22:14:18 -0000 To: commits@pdfbox.apache.org From: tilman@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20150115221419.0CD2CAC003F@hades.apache.org> Author: tilman Date: Thu Jan 15 22:14:18 2015 New Revision: 1652285 URL: http://svn.apache.org/r1652285 Log: PDFBOX-2576: methods in interface are always public Modified: pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/cos/ICOSVisitor.java Modified: pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/cos/ICOSVisitor.java URL: http://svn.apache.org/viewvc/pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/cos/ICOSVisitor.java?rev=1652285&r1=1652284&r2=1652285&view=diff ============================================================================== --- pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/cos/ICOSVisitor.java (original) +++ pdfbox/trunk/pdfbox/src/main/java/org/apache/pdfbox/cos/ICOSVisitor.java Thu Jan 15 22:14:18 2015 @@ -33,7 +33,7 @@ public interface ICOSVisitor * @return any Object depending on the visitor implementation, or null * @throws IOException If there is an error while visiting this object. */ - public Object visitFromArray( COSArray obj ) throws IOException; + Object visitFromArray( COSArray obj ) throws IOException; /** * Notification of visit to boolean object. @@ -42,7 +42,7 @@ public interface ICOSVisitor * @return any Object depending on the visitor implementation, or null * @throws IOException If there is an error while visiting this object. */ - public Object visitFromBoolean( COSBoolean obj ) throws IOException; + Object visitFromBoolean( COSBoolean obj ) throws IOException; /** * Notification of visit to dictionary object. @@ -51,7 +51,7 @@ public interface ICOSVisitor * @return any Object depending on the visitor implementation, or null * @throws IOException If there is an error while visiting this object. */ - public Object visitFromDictionary( COSDictionary obj ) throws IOException; + Object visitFromDictionary( COSDictionary obj ) throws IOException; /** * Notification of visit to document object. @@ -60,7 +60,7 @@ public interface ICOSVisitor * @return any Object depending on the visitor implementation, or null * @throws IOException If there is an error while visiting this object. */ - public Object visitFromDocument( COSDocument obj ) throws IOException; + Object visitFromDocument( COSDocument obj ) throws IOException; /** * Notification of visit to float object. @@ -69,7 +69,7 @@ public interface ICOSVisitor * @return any Object depending on the visitor implementation, or null * @throws IOException If there is an error while visiting this object. */ - public Object visitFromFloat( COSFloat obj ) throws IOException; + Object visitFromFloat( COSFloat obj ) throws IOException; /** * Notification of visit to integer object. @@ -78,7 +78,7 @@ public interface ICOSVisitor * @return any Object depending on the visitor implementation, or null * @throws IOException If there is an error while visiting this object. */ - public Object visitFromInt( COSInteger obj ) throws IOException; + Object visitFromInt( COSInteger obj ) throws IOException; /** * Notification of visit to name object. @@ -87,7 +87,7 @@ public interface ICOSVisitor * @return any Object depending on the visitor implementation, or null * @throws IOException If there is an error while visiting this object. */ - public Object visitFromName( COSName obj ) throws IOException; + Object visitFromName( COSName obj ) throws IOException; /** * Notification of visit to null object. @@ -96,7 +96,7 @@ public interface ICOSVisitor * @return any Object depending on the visitor implementation, or null * @throws IOException If there is an error while visiting this object. */ - public Object visitFromNull( COSNull obj ) throws IOException; + Object visitFromNull( COSNull obj ) throws IOException; /** * Notification of visit to stream object. @@ -105,7 +105,7 @@ public interface ICOSVisitor * @return any Object depending on the visitor implementation, or null * @throws IOException If there is an error while visiting this object. */ - public Object visitFromStream( COSStream obj ) throws IOException; + Object visitFromStream( COSStream obj ) throws IOException; /** * Notification of visit to string object. @@ -114,5 +114,5 @@ public interface ICOSVisitor * @return any Object depending on the visitor implementation, or null * @throws IOException If there is an error while visiting this object. */ - public Object visitFromString( COSString obj ) throws IOException; + Object visitFromString( COSString obj ) throws IOException; }