解决方法:
原方法:gitLabApi.getCommitsApi().getCommit(projectId, commit.getShortId())
新方法
gitLabApi.getCommitsApi().getOptionalCommit(projectId, commit.getShortId());
GitLab is not respondingnull
文章介绍了在使用GitLabAPI时,从原始的getCommit方法转换到新的getOptionalCommit方法的过程。新方法增加了可选性,可能提高了代码的健壮性,减少了空指针异常的风险。这种变化对于处理潜在的不存在的提交信息更加安全。
摘要由CSDN通过智能技术生成