リポジトリ作成ロジック修正

This commit is contained in:
ろむねこ 2023-12-12 12:41:20 +09:00
parent c4427313b0
commit d561bf2ea6
No known key found for this signature in database
GPG Key ID: FA1F39A1BA37D168

View File

@ -18,11 +18,11 @@ public class DebugFuncImpl implements DebugFunc {
RepoUtils repoUtils;
public Repository getOrCreateRepositoryById(String id) {
// Repository repo = repoUtils.getRepo(id); // TODO-rca: リポジトリの存在確認をもうすこしなんとかする
// if (repo == null) {
// repo = repoUtils.createRepo(id);
// }
Repository repo = repoUtils.createRepo(id); // debug
Repository repo = repoUtils.getRepo(id); // TODO-rca: リポジトリの存在確認をもうすこしなんとかする
if (repo == null) {
repo = repoUtils.createRepo(id);
}
// Repository repo = repoUtils.createRepo(id); // debug
return repo;
}
}