Skip to content

Commit

Permalink
Was missing Javadoc.
Browse files Browse the repository at this point in the history
  • Loading branch information
jglick committed Jun 12, 2013
1 parent 4398a60 commit acf8884
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions core/src/main/java/hudson/model/queue/Tasks.java
Expand Up @@ -94,6 +94,11 @@ private static Authentication _getDefaultAuthenticationOf(Task t) {
return t.getDefaultAuthentication();
}

/**
* @param t a task
* @return {@link Task#getDefaultAuthentication}, or {@link ACL#SYSTEM}
* @since 1.520
*/
public static Authentication getDefaultAuthenticationOf(Task t) {
try {
return _getDefaultAuthenticationOf(t);
Expand Down

0 comments on commit acf8884

Please sign in to comment.