パッケージ名変更など

This commit is contained in:
ろむねこ 2023-12-12 10:52:49 +09:00
parent 1682e06d24
commit 6bc741d0b0
No known key found for this signature in database
GPG Key ID: FA1F39A1BA37D168
4 changed files with 14 additions and 5 deletions

View File

@ -7,4 +7,6 @@ public interface UtilsRepo {
Path getExternalFilesDirPath(String type);
Path getExternalFilesDirPath();
}

View File

@ -0,0 +1,12 @@
package one.nem.lacerta.source.jgit;
import org.eclipse.jgit.lib.Repository;
public class RepoUtils {
// Internal Utils
public static String getRepoName(Repository repo) {
return repo.getDirectory().getParentFile().getName();
}
}

View File

@ -1,5 +0,0 @@
package one.nem.lacerta.source.repo;
public class RepoUtils {
// Internal Utils
}