|
|
@ -89,7 +89,6 @@ import org.eclipse.jgit.lib.Repository; |
|
|
|
import org.eclipse.jgit.revwalk.RevCommit; |
|
|
|
import org.eclipse.jgit.revwalk.RevCommit; |
|
|
|
import org.eclipse.jgit.revwalk.RevWalk; |
|
|
|
import org.eclipse.jgit.revwalk.RevWalk; |
|
|
|
import org.eclipse.jgit.util.FileUtils; |
|
|
|
import org.eclipse.jgit.util.FileUtils; |
|
|
|
|
|
|
|
|
|
|
|
import org.xml.sax.Attributes; |
|
|
|
import org.xml.sax.Attributes; |
|
|
|
import org.xml.sax.InputSource; |
|
|
|
import org.xml.sax.InputSource; |
|
|
|
import org.xml.sax.SAXException; |
|
|
|
import org.xml.sax.SAXException; |
|
|
@ -561,12 +560,14 @@ public class RepoCommand extends GitCommand<RevCommit> { |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@SuppressWarnings("serial") |
|
|
|
private static class ManifestErrorException extends GitAPIException { |
|
|
|
private static class ManifestErrorException extends GitAPIException { |
|
|
|
ManifestErrorException(Throwable cause) { |
|
|
|
ManifestErrorException(Throwable cause) { |
|
|
|
super(RepoText.get().invalidManifest, cause); |
|
|
|
super(RepoText.get().invalidManifest, cause); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@SuppressWarnings("serial") |
|
|
|
private static class RemoteUnavailableException extends GitAPIException { |
|
|
|
private static class RemoteUnavailableException extends GitAPIException { |
|
|
|
RemoteUnavailableException(String uri) { |
|
|
|
RemoteUnavailableException(String uri) { |
|
|
|
super(MessageFormat.format(RepoText.get().errorRemoteUnavailable, uri)); |
|
|
|
super(MessageFormat.format(RepoText.get().errorRemoteUnavailable, uri)); |
|
|
|