File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
src/main/java/com/coravy/hudson/plugins/github Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 99import hudson .scm .ChangeLogSet .Entry ;
1010import org .apache .commons .lang .StringUtils ;
1111
12- import javax . annotation .CheckForNull ;
13- import javax . annotation .CheckReturnValue ;
14- import javax . annotation . Nonnull ;
12+ import edu . umd . cs . findbugs . annotations .CheckForNull ;
13+ import edu . umd . cs . findbugs . annotations .CheckReturnValue ;
14+ import edu . umd . cs . findbugs . annotations . NonNull ;
1515
1616import static hudson .Functions .htmlAttributeEscape ;
1717import static java .lang .String .format ;
@@ -100,13 +100,13 @@ void process(MarkupText text, String url) {
100100 "(?:C|c)lose(?:s?)\\ s(?<!\\ :)(?:#)NUM" , // "Closes #123"
101101 "issues/$1" )};
102102
103- @ Nonnull
103+ @ NonNull
104104 public static String getAllowedUriSchemes () {
105105 return StringUtils .join (ALLOWED_URI_SCHEMES , ',' );
106106 }
107107
108108 @ CheckReturnValue
109- @ Nonnull
109+ @ NonNull
110110 public static boolean verifyUrl (@ CheckForNull String urlString ) {
111111 if (StringUtils .isBlank (urlString )) {
112112 return false ;
You can’t perform that action at this time.
0 commit comments