Removed unused FbsInputStream constructor, added Javadoc to the remaining constructor.
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@2590 3789f03b-4d11-0410-bbf8-ca57d06f2519
diff --git a/java/src/com/tightvnc/rfbplayer/FbsInputStream.java b/java/src/com/tightvnc/rfbplayer/FbsInputStream.java
index 739e5f0..431ee21 100644
--- a/java/src/com/tightvnc/rfbplayer/FbsInputStream.java
+++ b/java/src/com/tightvnc/rfbplayer/FbsInputStream.java
@@ -43,16 +43,13 @@
protected Observer obs;
- //
- // Constructors.
- //
- FbsInputStream() throws IOException {
- throw new IOException("FbsInputStream: no such constructor");
- }
-
- //
- // Construct FbsInputStream object, begin playback.
- //
+ /**
+ * Construct FbsInputStream object based on the given InputStream.
+ *
+ * @param in InputStream object that will be used as a base
+ * @throws java.io.IOException thrown on read error or on incorrect file
+ * header signature.
+ */
FbsInputStream(InputStream in) throws IOException {
this.in = in;
startTime = System.currentTimeMillis();