java Date 类型解错误 ,会解析成空对象
Opened this issue · 1 comments
jack15083 commented
这个方法改成下面这样ok了
/** * Handle decoding a timestamp in milliseconds. * * @param integer $byte */ public function handleTimestampMilliseconds($byte) { $value = $this->appendInt64Data($byte); if (null !== $value) { $this->popStateAndEmitValue($value); } }
iamhyz commented
这个方法改成下面这样ok了
/** * Handle decoding a timestamp in milliseconds. * * @param integer $byte */ public function handleTimestampMilliseconds($byte) { $value = $this->appendInt64Data($byte); if (null !== $value) { $this->popStateAndEmitValue($value); } }
改哪个文件呀