diff --git a/src/main/java/org/jvnet/hudson/test/ClosureExecuterAction.java b/src/main/java/org/jvnet/hudson/test/ClosureExecuterAction.java index 9feb531fa..175fe7c18 100644 --- a/src/main/java/org/jvnet/hudson/test/ClosureExecuterAction.java +++ b/src/main/java/org/jvnet/hudson/test/ClosureExecuterAction.java @@ -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 */ diff --git a/src/main/java/org/jvnet/hudson/test/recipes/Recipe.java b/src/main/java/org/jvnet/hudson/test/recipes/Recipe.java index a848c0211..e06201535 100644 --- a/src/main/java/org/jvnet/hudson/test/recipes/Recipe.java +++ b/src/main/java/org/jvnet/hudson/test/recipes/Recipe.java @@ -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. @@ -70,7 +69,7 @@ abstract class Runner { 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 {}