You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by ma...@apache.org on 2006/02/15 13:11:58 UTC

svn commit: r377993 - /myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/custom/fileupload/UploadedFile.java

Author: matzew
Date: Wed Feb 15 04:11:56 2006
New Revision: 377993

URL: http://svn.apache.org/viewcvs?rev=377993&view=rev
Log:
removed public from interface

Modified:
    myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/custom/fileupload/UploadedFile.java

Modified: myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/custom/fileupload/UploadedFile.java
URL: http://svn.apache.org/viewcvs/myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/custom/fileupload/UploadedFile.java?rev=377993&r1=377992&r2=377993&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/custom/fileupload/UploadedFile.java (original)
+++ myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/custom/fileupload/UploadedFile.java Wed Feb 15 04:11:56 2006
@@ -34,7 +34,7 @@
      *
      * @return file contents
      */
-    public byte[] getBytes() throws IOException;
+    byte[] getBytes() throws IOException;
 
 
     /**
@@ -43,25 +43,25 @@
      * @throws IOException
      * @return InputStream
      */
-    public InputStream getInputStream() throws IOException;
+    InputStream getInputStream() throws IOException;
 
 
     /**
      * @return Returns the _contentType.
      */
-    public String getContentType();
+    String getContentType();
 
 
 
     /**
      * @return Returns the _name.
      */
-    public String getName();
+    String getName();
 
 
     /**
      * Answer the size of this file.
      * @return long
      */
-    public long getSize();
+    long getSize();
 }