Skip to content

Commit

Permalink
skip non web bound actions.
Browse files Browse the repository at this point in the history
git-svn-id: https://hudson.dev.java.net/svn/hudson/trunk/hudson/main@6381 71c3de6d-444a-0410-be80-ed276b4c234a
  • Loading branch information
kohsuke committed Dec 22, 2007
1 parent 1449650 commit f65da7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/hudson/model/Actionable.java
Expand Up @@ -80,7 +80,7 @@ public Object getDynamic(String token, StaplerRequest req, StaplerResponse rsp)
for (Action a : getActions()) {
String urlName = a.getUrlName();
if(urlName==null)
throw new AssertionError("Action "+a+" returned null from the getUrlName() method");
continue;
if(urlName.equals(token))
return a;
}
Expand Down

0 comments on commit f65da7f

Please sign in to comment.