GetTime gets the time value with default fsp Deprecated: use GetTimeWithFsp instead. The `BinaryJSON` doesn't contain the fsp information, so the caller should always provide the fsp.
()
| 242 | // Deprecated: use GetTimeWithFsp instead. The `BinaryJSON` doesn't contain the fsp information, so the caller |
| 243 | // should always provide the fsp. |
| 244 | func (bj BinaryJSON) GetTime() Time { |
| 245 | return bj.GetTimeWithFsp(DefaultFsp) |
| 246 | } |
| 247 | |
| 248 | // GetTimeWithFsp gets the time value with given fsp |
| 249 | func (bj BinaryJSON) GetTimeWithFsp(fsp int) Time { |
no test coverage detected