提交 8d36a73f 编写于 作者: K kohsuke

experimenting to enable subtyping

git-svn-id: https://hudson.dev.java.net/svn/hudson/trunk/hudson/main@10232 71c3de6d-444a-0410-be80-ed276b4c234a
上级 437e273f
......@@ -796,7 +796,7 @@ public class SubversionSCM extends SCM implements Serializable {
return tokens[tokens.length-1]; // return the last token
}
public static final class DescriptorImpl extends SCMDescriptor<SubversionSCM> {
public static class DescriptorImpl extends SCMDescriptor<SubversionSCM> {
public static final DescriptorImpl DESCRIPTOR = new DescriptorImpl();
/**
......@@ -1012,6 +1012,10 @@ public class SubversionSCM extends SCM implements Serializable {
load();
}
protected DescriptorImpl(Class clazz, Class<? extends RepositoryBrowser> repositoryBrowser) {
super(clazz,repositoryBrowser);
}
public String getDisplayName() {
return "Subversion";
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册