Skip to content

Commit

Permalink
Merge pull request #98 from MarkEWaite/fix-spotbugs-warning
Browse files Browse the repository at this point in the history
Fix spotbugs warning - invalid method name
  • Loading branch information
froque authored Sep 12, 2024
2 parents 0945379 + 9bac8a3 commit eeba176
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ private FormValidation checkCrons(String cron){
return FormValidation.warning(sanity);
}
} catch (IllegalArgumentException e){
return FormValidation.error(Messages.InvalidCrontab(cron));
return FormValidation.error(Messages.invalidCrontab(cron));
}
}
public FormValidation doCheckCountIntervalBuilds(@QueryParameter String value){
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ DiskUsage.Graph.JobDirectory=job
DiskUsage.Graph.BuildDirectory=builds
DiskUsage.Graph.AgentWorkspaces=agent workspaces
DiskUsage.Graph.NonAgentWorkspaces=non-agent workspaces
InvalidCrontab=Invalid cron {0}
invalidCrontab=Invalid cron {0}

0 comments on commit eeba176

Please sign in to comment.