Skip to content

Commit

Permalink
Noting JENKINS-48543.
Browse files Browse the repository at this point in the history
  • Loading branch information
jglick committed Dec 13, 2017
1 parent 82497b9 commit 3ab1af1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/hudson/scm/SubversionSCM.java
Expand Up @@ -1082,7 +1082,7 @@ public static SvnClientManager createClientManager(ISVNAuthenticationProvider au
public static DefaultSVNOptions createDefaultSVNOptions() {
DefaultSVNOptions defaultOptions = SVNWCUtil.createDefaultOptions(true);
DescriptorImpl descriptor = descriptor();
if (defaultOptions != null && descriptor != null) {
if (defaultOptions != null && descriptor != null) { // TODO JENKINS-48543 bad design
defaultOptions.setAuthStorageEnabled(descriptor.isStoreAuthToDisk());
}
return defaultOptions;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/hudson/scm/SubversionWorkspaceSelector.java
Expand Up @@ -110,7 +110,7 @@ public static void syncWorkspaceFormatFromMaster() {
Channel c = Channel.current();
if (c!=null) // just being defensive. cannot be null.
try {
workspaceFormat = c.call(new SlaveToMasterCallable<Integer, RuntimeException>() {
workspaceFormat = c.call(new SlaveToMasterCallable<Integer, RuntimeException>() { // TODO JENKINS-48543 bad design
private static final long serialVersionUID = 6494337549896104453L;

public Integer call() {
Expand Down

0 comments on commit 3ab1af1

Please sign in to comment.