mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-22 16:03:15 +00:00
Implにメソッド生成
This commit is contained in:
parent
87850eb899
commit
ac3523780f
|
@ -6,4 +6,43 @@ import one.nem.lacerta.source.jgit.ActionRepo;
|
|||
|
||||
public class ActionRepoImpl implements ActionRepo{
|
||||
|
||||
@Override
|
||||
public Repository setRepository(Repository repository) {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Repository getRepository() {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getRepositoryName() {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String[] getUnstagedFiles() {
|
||||
return new String[0];
|
||||
}
|
||||
|
||||
@Override
|
||||
public String[] getStagedFiles() {
|
||||
return new String[0];
|
||||
}
|
||||
|
||||
@Override
|
||||
public void stageFile(String path) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void unstageFile(String path) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void commit(String message) {
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user