1 package com.proalpha.pds.gitutils.common;
8 private static List<String> conflictingFiles;
9 private static File repositoryPath;
11 private static final class RepositoryInstanceHolder {
19 return RepositoryInstanceHolder.INSTANCE;
22 public void setRepositoryPath(File path) {
23 repositoryPath = path;
26 public File getRepositoryPath() {
27 return repositoryPath;
30 public void setConflictingFiles(List<String> fileList) {
31 conflictingFiles = fileList;
34 public List<String> getConflictingFiles()
37 return conflictingFiles;