mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-23 00:13:16 +00:00
Impl生成
This commit is contained in:
parent
c35bf9cabd
commit
698a191586
|
@ -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) {
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user