Back in 07c8dc6e94729ff4104f0a1c815dd81f3e71c562 I changed the RemoteConfig class to accept any Config object, but its static getAllRemoteConfigs() utility method was missed and still used a RepositoryConfig. It should take any Config. Signed-off-by: Shawn O. Pearce <spearce@xxxxxxxxxxx> --- .../org/spearce/jgit/transport/RemoteConfig.java | 5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) diff --git a/org.spearce.jgit/src/org/spearce/jgit/transport/RemoteConfig.java b/org.spearce.jgit/src/org/spearce/jgit/transport/RemoteConfig.java index ca84acf..dd7a50c 100644 --- a/org.spearce.jgit/src/org/spearce/jgit/transport/RemoteConfig.java +++ b/org.spearce.jgit/src/org/spearce/jgit/transport/RemoteConfig.java @@ -44,7 +44,6 @@ import java.util.List; import org.spearce.jgit.lib.Config; -import org.spearce.jgit.lib.RepositoryConfig; /** * A remembered remote repository, including URLs and RefSpecs. @@ -96,8 +95,8 @@ * @throws URISyntaxException * one of the URIs within the remote's configuration is invalid. */ - public static List<RemoteConfig> getAllRemoteConfigs( - final RepositoryConfig rc) throws URISyntaxException { + public static List<RemoteConfig> getAllRemoteConfigs(final Config rc) + throws URISyntaxException { final List<String> names = new ArrayList<String>(rc .getSubsections(SECTION)); Collections.sort(names); -- 1.6.4.rc3.201.gd9d59 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html