File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
main/java/com/upokecenter/cbor
test/java/com/upokecenter/test Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 1010import com .upokecenter .numbers .*;
1111
1212 /**
13- * Contains utility methods that may have use outside of the CBORObject class.
13+ * Contains auxiliary methods that may have use outside of the CBORObject
14+ * class.
1415 */
1516 final class CBORUtilities {
1617private CBORUtilities () {
Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ public static boolean ReadBoolean(InputStream stream) throws java.io.IOException
116116 } else if (b == 0xdb ) {
117117 stream .skip (8 );
118118 } else if (b > 0xdb ) {
119- throw new IOException ("Not a boolean " );
119+ throw new IOException ("Not a Boolean " );
120120 }
121121 b = stream .read ();
122122 }
@@ -126,7 +126,7 @@ public static boolean ReadBoolean(InputStream stream) throws java.io.IOException
126126case 0xf5 :
127127return true ;
128128default :
129- throw new IOException ("Not a boolean " );
129+ throw new IOException ("Not a Boolean " );
130130}
131131 }
132132
You can’t perform that action at this time.
0 commit comments