From 783e9195ccc4f460a3369e8c077e5ce078b1e1be Mon Sep 17 00:00:00 2001 From: kohsuke Date: Wed, 31 Jan 2007 14:03:06 +0000 Subject: [PATCH] fixed #265. git-svn-id: https://hudson.dev.java.net/svn/hudson/trunk/hudson/main@2000 71c3de6d-444a-0410-be80-ed276b4c234a --- core/src/main/java/hudson/scm/SubversionSCM.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/hudson/scm/SubversionSCM.java b/core/src/main/java/hudson/scm/SubversionSCM.java index 49b53d72d9..4a9734687e 100644 --- a/core/src/main/java/hudson/scm/SubversionSCM.java +++ b/core/src/main/java/hudson/scm/SubversionSCM.java @@ -296,7 +296,7 @@ public class SubversionSCM extends SCM implements Serializable { } public SvnInfo(SVNInfo info) { - this( info.getURL().toDecodedString(), info.getRevision().getNumber() ); + this( info.getURL().toDecodedString(), info.getCommittedRevision().getNumber() ); } public SVNURL getSVNURL() throws SVNException { -- GitLab