Skip to content

Commit

Permalink
Fix class references in Javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
darxriggs committed Feb 14, 2019
1 parent 307f0ba commit 90f747d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Expand Up @@ -35,7 +35,7 @@
import java.util.UUID;

/**
* Server-side logic that implements {@link HudsonTestCase#executeOnServer(Callable)}.
* Server-side logic that implements {@link HudsonTestCase#executeOnServer(java.util.concurrent.Callable)}.
*
* @author Kohsuke Kawaguchi
*/
Expand Down
3 changes: 1 addition & 2 deletions src/main/java/org/jvnet/hudson/test/recipes/Recipe.java
Expand Up @@ -36,7 +36,6 @@
import junit.framework.TestCase;
import org.jvnet.hudson.test.JenkinsRecipe;


/**
* Meta-annotation for recipe annotations, which controls
* the test environment set up.
Expand Down Expand Up @@ -70,7 +69,7 @@ abstract class Runner<T extends Annotation> {
public void setup(HudsonTestCase testCase, T recipe) throws Exception {}

/**
* Called right before {@link jenkins.model.Jenkins#Jenkins(File, ServletContext)} is invoked
* Called right before {@link jenkins.model.Jenkins#Jenkins(File, javax.servlet.ServletContext)} is invoked
* to decorate the hudson home directory.
*/
public void decorateHome(HudsonTestCase testCase, File home) throws Exception {}
Expand Down

0 comments on commit 90f747d

Please sign in to comment.