You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by el...@apache.org on 2005/04/15 07:19:52 UTC

svn commit: r161383 - directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/ber/tlv/ITLVBerDecoderMBean.java

Author: elecharny
Date: Thu Apr 14 22:19:52 2005
New Revision: 161383

URL: http://svn.apache.org/viewcvs?view=rev&rev=161383
Log:
Suppressed the superfluous 'public' keyword

Modified:
    directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/ber/tlv/ITLVBerDecoderMBean.java

Modified: directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/ber/tlv/ITLVBerDecoderMBean.java
URL: http://svn.apache.org/viewcvs/directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/ber/tlv/ITLVBerDecoderMBean.java?view=diff&r1=161382&r2=161383
==============================================================================
--- directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/ber/tlv/ITLVBerDecoderMBean.java (original)
+++ directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/ber/tlv/ITLVBerDecoderMBean.java Thu Apr 14 22:19:52 2005
@@ -32,7 +32,7 @@
      *  
      * @param length The number of byte to use 
     */
-    public void setMaxLengthLength( int length ) throws DecoderException;
+    void setMaxLengthLength( int length ) throws DecoderException;
 
     /** Set the maximum number of bytes that should be used to encode a Tag label,
      * including the first byte. 
@@ -40,27 +40,27 @@
      *   
      * @param length The length to use 
     */
-    public void setMaxTagLength( int length );
+    void setMaxTagLength( int length );
 
     /** Allow indefinite length. */
-    public void allowIndefiniteLength();
+    void allowIndefiniteLength();
 
     /** Disallow indefinite length. */
-    public void disallowIndefiniteLength();
+    void disallowIndefiniteLength();
 
     /** Get the actual maximum number of bytes that can be used to encode the Length
      *  
      * @return The maximum bytes of the Length
     */
-    public int getMaxLengthLength();
+    int getMaxLengthLength();
 
     /** Get the actual maximum number of bytes that can be used to encode the Tag 
      * @return The maximum length of the Tag
     */
-    public int getMaxTagLength();
+    int getMaxTagLength();
 
     /** Tell if indefinite length form could be used for Length 
      * @return <code>true</code> if the Indefinite form is allowed
     */
-    public boolean isIndefiniteLengthAllowed();
+    boolean isIndefiniteLengthAllowed();
 }