Skip to content

Commit

Permalink
[FIXES JENKINS-38665] Add databound constructor for default backref s…
Browse files Browse the repository at this point in the history
  • Loading branch information
lanwen committed Oct 3, 2016
1 parent f97a4fe commit 3962f10
Showing 1 changed file with 7 additions and 4 deletions.
@@ -1,21 +1,24 @@
package org.jenkinsci.plugins.github.status.sources;

import org.jenkinsci.plugins.github.extension.status.GitHubStatusBackrefSource;

import hudson.Extension;
import hudson.model.Descriptor;
import hudson.model.Run;
import hudson.model.TaskListener;
import org.jenkinsci.plugins.github.extension.status.GitHubStatusBackrefSource;
import org.kohsuke.stapler.DataBoundConstructor;

/**
* Gets backref from Run URL.
*
* @author pupssman (Kalinin Ivan)
* @since 1.21.2
*
* @since 1.22.1
*/
public class BuildRefBackrefSource extends GitHubStatusBackrefSource {

@DataBoundConstructor
public BuildRefBackrefSource() {
}

/**
* Returns absolute URL of the Run
*/
Expand Down

0 comments on commit 3962f10

Please sign in to comment.