(no commit message)
[utils] / support / src / org / wamblee / io / StreamResource.java
index e2feb53489f572912d82e9a09a341f43350a0043..11f815c45c7a4b99eaccfdf835b9a5ec4554ef32 100644 (file)
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- */ 
+ */
 package org.wamblee.io;
 
 import java.io.IOException;
 import java.io.InputStream;
 
-
 /**
  * Input resource based on an input stream.
  */
@@ -30,16 +29,20 @@ public class StreamResource implements InputResource {
 
     /**
      * Constructs a resource.
-     * @param aStream Input stream to read.
+     * 
+     * @param aStream
+     *            Input stream to read.
      */
-    public StreamResource( InputStream aStream ) {
+    public StreamResource(InputStream aStream) {
         _stream = aStream;
     }
 
-    /** (non-Javadoc)
+    /*
+     * (non-Javadoc)
+     * 
      * @see InputResource#getInputStream()
      */
-    public InputStream getInputStream(  ) throws IOException {
+    public InputStream getInputStream() throws IOException {
         return _stream;
     }
 }