Impl生成

This commit is contained in:
r-ca 2023-12-16 13:50:22 +09:00
parent c35bf9cabd
commit 698a191586
No known key found for this signature in database
GPG Key ID: 6A72911AC73464A9

View File

@ -0,0 +1,33 @@
package one.nem.lacerta.source.jgit.impl;
import org.eclipse.jgit.lib.Repository;
import one.nem.lacerta.source.jgit.ActionRepo;
public class ActionRepoImpl implements ActionRepo{
@Override
public String[] getUnstagedFiles(Repository repository) {
return new String[0];
}
@Override
public String[] getStagedFiles(Repository repository) {
return new String[0];
}
@Override
public void stageFile(Repository repository, String path) {
}
@Override
public void unstageFile(Repository repository, String path) {
}
@Override
public void commitFile(Repository repository, String path, String message) {
}
}