2003/06/16 08:03:13
[org.ibex.core.git] / src / org / bouncycastle / asn1 / DERInputStream.java
index 9cf0ef1..296221b 100644 (file)
@@ -70,16 +70,16 @@ public class DERInputStream
         }
     }
 
-       /**
-        * build an object given its tag and a byte stream to construct it
-        * from.
-        */
+        /**
+         * build an object given its tag and a byte stream to construct it
+         * from.
+         */
     protected DERObject buildObject(
-               int         tag,
-               byte[]  bytes)
-               throws IOException
-       {
-               switch (tag)
+                int         tag,
+                byte[]  bytes)
+                throws IOException
+        {
+                switch (tag)
         {
         case NULL:
             return null;   
@@ -219,7 +219,7 @@ public class DERInputStream
 
             return new DERUnknownTag(tag, bytes);
         }
-       }
+        }
 
     public DERObject readObject()
         throws IOException
@@ -235,6 +235,6 @@ public class DERInputStream
 
         readFully(bytes);
 
-               return buildObject(tag, bytes);
-       }
+                return buildObject(tag, bytes);
+        }
 }