File tree Expand file tree Collapse file tree
main/java/org/msgpack/unpacker Expand file tree Collapse file tree Original file line number Diff line number Diff line change 66branches :
77 only :
88 - master
9+ - develop
910notifications :
1011 email :
1112 - muga.nishizawa@gmail.com
1213 - ozawa.tsuyoshi@gmail.com
14+ - leo@xerial.org
Original file line number Diff line number Diff line change @@ -24,10 +24,12 @@ final class DoubleAccept extends Accept {
2424 super ("float" );
2525 }
2626
27+ @ Override
2728 void acceptFloat (float v ) {
2829 this .value = (double ) v ;
2930 }
3031
32+ @ Override
3133 void acceptDouble (double v ) {
3234 this .value = v ;
3335 }
Original file line number Diff line number Diff line change @@ -42,9 +42,9 @@ public void testBooleanArray(boolean[] v) throws Exception {
4242 }
4343
4444 public void testByte () throws Exception {
45- testShort ((byte ) 0 );
46- testShort ((byte ) -1 );
47- testShort ((byte ) 1 );
45+ testByte ((byte ) 0 );
46+ testByte ((byte ) -1 );
47+ testByte ((byte ) 1 );
4848 testByte (Byte .MIN_VALUE );
4949 testByte (Byte .MAX_VALUE );
5050 byte [] bytes = new byte [1000 ];
You can’t perform that action at this time.
0 commit comments