0

类:org.hl7.fhir.instance.model.DateAndTime 方法:setFraction(int fraction)

当分数为 000 时失败。我在代码中看到

public void setFraction(int fraction) throws Exception {
    this.fraction = fraction;
    if (this.fraction == 0)
        throw new Exception("set 'fractions' before setting 'fraction'");
}

检查“if (this.fraction == 0)”是一个错误吗?它应该是“if (this.fractions == 0)”吗?

4

1 回答 1

0

绝对是一个错误 - 应该是 this.fractions。谢谢

立即提交,即将发布到网络

于 2013-12-16T21:32:33.387 回答