Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #83 from ikedam/feature/JENKINS-33257_FixJavadoc
Fix Javadoc issues introduced in JENKINS-33257
  • Loading branch information
ikedam committed Apr 3, 2016
2 parents 9da068e + c86d948 commit 1f34b25
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Expand Up @@ -546,7 +546,7 @@ private boolean perform(Run src, Run<?,?> dst, String expandedFilter, String exp
* Package scope for testing purpose.
*
* @param variableName
* @return
* @return true if <code>variableName</code> is valid as a variable name.
*/
static boolean isValidVariableName(final String variableName) {
if(StringUtils.isBlank(variableName)) {
Expand Down
Expand Up @@ -197,7 +197,7 @@ public CopyArtifactPermissionProperty newInstance(StaplerRequest req, JSONObject
*
* @param projectNames
* @param context
* @return
* @return list of not-found projects.
*/
/*package*/ List<String> checkNotFoundProjects(String projectNames, @CheckForNull ItemGroup<?> context) {
if (StringUtils.isBlank(projectNames)) {
Expand Down Expand Up @@ -231,7 +231,7 @@ public CopyArtifactPermissionProperty newInstance(StaplerRequest req, JSONObject
/**
* Checks the provided projects exist in the provided context.
* @param projectNames Projects to check.
* @param context Context.
* @param job the configuring job.
* @return ok if all projects are found and a warning otherwise.
*/
public FormValidation doCheckProjectNames(@QueryParameter String projectNames, @CheckForNull @AncestorInPath Job<?, ?> job) {
Expand All @@ -245,7 +245,7 @@ public FormValidation doCheckProjectNames(@QueryParameter String projectNames, @
/**
* Provides candidates for project name autocompletion.
* @param value Seed value.
* @param context Context.
* @param currentJob job the configuring job.
* @return The proposed project candidates.
*/
public AutoCompletionCandidates doAutoCompleteProjectNames(@QueryParameter String value, @CheckForNull @AncestorInPath Job<?, ?> currentJob) {
Expand Down

0 comments on commit 1f34b25

Please sign in to comment.