提交 7b3cf2d4 编写于 作者: K kohsuke

fix a bug where svn fails to operate properly on slaves.


git-svn-id: https://hudson.dev.java.net/svn/hudson/trunk/hudson/main@1998 71c3de6d-444a-0410-be80-ed276b4c234a
上级 86fd26da
......@@ -658,14 +658,20 @@ public class SubversionSCM extends SCM implements Serializable {
}
}
static { new Initializer(); }
}
private static final long serialVersionUID = 1L;
private static final Logger logger = Logger.getLogger(SubversionSCM.class.getName());
static { new Initializer(); }
private static final class Initializer {
static {
DAVRepositoryFactory.setup(); // http, https
SVNRepositoryFactoryImpl.setup(); // svn, svn+xxx
FSRepositoryFactory.setup(); // file
}
}
private static final long serialVersionUID = 1L;
private static final Logger logger = Logger.getLogger(SubversionSCM.class.getName());
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册