@@ -263,7 +263,7 @@ public static void AddTagHandler(BigInteger bigintTag, ICBORTag handler) {
263263 if (bigintTag .bitLength () > 64 ) {
264264 throw new IllegalArgumentException ("bigintTag.bitLength (" +
265265 (long )bigintTag .bitLength () + ") is more than " +
266- "64" );
266+ "64" );
267267 }
268268 synchronized (tagHandlers ) {
269269 tagHandlers .put (bigintTag , handler );
@@ -505,7 +505,7 @@ public boolean IsNaN() {
505505 */
506506 public int CompareToIgnoreTags (CBORObject other ) {
507507 return (other == null ) ? 1 : ((this == other ) ? 0 :
508- this .Untag ().compareTo (other .Untag ()));
508+ this .Untag ().compareTo (other .Untag ()));
509509 }
510510
511511 /**
@@ -586,7 +586,7 @@ public int compareTo(CBORObject other) {
586586 return 1 ;
587587 }
588588 cmp = (simpleValueA == simpleValueB ) ? 0 : ((simpleValueA <
589- simpleValueB ) ? -1 : 1 );
589+ simpleValueB ) ? -1 : 1 );
590590 } else if (typeA == typeB ) {
591591 switch (typeA ) {
592592 case CBORObjectTypeInteger : {
@@ -601,7 +601,7 @@ public int compareTo(CBORObject other) {
601601 // Treat NaN as greater than all other numbers
602602 cmp = Float .isNaN (a ) ? (Float .isNaN (b ) ? 0 : 1 ) :
603603 (Float .isNaN (b ) ? (-1 ) : ((a == b ) ? 0 : ((a < b ) ? -1 :
604- 1 )));
604+ 1 )));
605605 break ;
606606 }
607607 case CBORObjectTypeBigInteger : {
@@ -616,7 +616,7 @@ public int compareTo(CBORObject other) {
616616 // Treat NaN as greater than all other numbers
617617 cmp = Double .isNaN (a ) ? (Double .isNaN (b ) ? 0 : 1 ) :
618618 (Double .isNaN (b ) ? (-1 ) : ((a == b ) ? 0 : ((a < b ) ? -1 :
619- 1 )));
619+ 1 )));
620620 break ;
621621 }
622622 case CBORObjectTypeExtendedDecimal : {
@@ -1045,7 +1045,7 @@ public boolean equals(CBORObject other) {
10451045 valueHashCode += 651869479 * itemHashCode ;
10461046 }
10471047 valueHashCode += 651869483 * (this .itemtypeValue +
1048- this .tagLow + this .tagHigh );
1048+ this .tagLow + this .tagHigh );
10491049 }
10501050 return valueHashCode ;
10511051 }
@@ -1372,7 +1372,7 @@ public byte[] GetByteString() {
13721372 public boolean HasTag (int tagValue ) {
13731373 if (tagValue < 0 ) {
13741374 throw new IllegalArgumentException ("tagValue (" + tagValue +
1375- ") is less than " + "0" );
1375+ ") is less than " + "0" );
13761376 }
13771377 CBORObject obj = this ;
13781378 while (true ) {
@@ -3328,7 +3328,7 @@ public static CBORObject FromSimpleValue(int simpleValue) {
33283328 }
33293329 if (simpleValue >= 24 && simpleValue < 32 ) {
33303330 throw new IllegalArgumentException ("Simple value is from 24 to 31: " +
3331- simpleValue );
3331+ simpleValue );
33323332 }
33333333 if (simpleValue < 32 ) {
33343334 return valueFixedObjects [0xe0 + simpleValue ];
@@ -3638,7 +3638,7 @@ public static <T> CBORObject FromObject(Iterable<T> value) {
36383638 * {@code dic} is null.
36393639 */
36403640 public static <TKey , TValue > CBORObject FromObject (Map <TKey ,
3641- TValue > dic ) {
3641+ TValue > dic ) {
36423642 if (dic == null ) {
36433643 return CBORObject .Null ;
36443644 }
0 commit comments