Skip to content

Commit

Permalink
Merge pull request #74 from KostyaSha/improve
Browse files Browse the repository at this point in the history
Small fixes during reading code.
  • Loading branch information
ikedam committed Nov 28, 2014
2 parents 8278679 + d34af5d commit e873abb
Showing 1 changed file with 5 additions and 5 deletions.
Expand Up @@ -81,9 +81,9 @@ public FileBuildParameters(String propertiesFile) {

/**
* This function returns the Action that should be passed to the triggered build
* to not trigger the build it can throw the DontTriggerException
* to not trigger the build it can throw the {@link DontTriggerException}
*
* @returns Action to be passed to the triggered build, can be Null if no parameters.
* @return Action to be passed to the triggered build, can be Null if no parameters.
*/
public Action getAction(AbstractBuild<?,?> build, TaskListener listener)
throws IOException, InterruptedException, DontTriggerException{
Expand Down Expand Up @@ -117,7 +117,7 @@ private List<ParameterValue> extractAllValues(AbstractBuild<?,?> build, TaskList
if (!f.exists()) {
listener.getLogger().println("[parameterizedtrigger] Properties file "
+ file + " did not exist.");
if(getFailTriggerOnMissing() == true) {
if(getFailTriggerOnMissing()) {
listener.getLogger().println("Not triggering due to missing file");
throw new DontTriggerException();
}
Expand Down Expand Up @@ -214,9 +214,9 @@ public FormValidation doCheckEncoding(@QueryParameter String encoding) {
*
* Note: Caller should pass it for the model is not bound to
* {@link StaplerRequest#findAncestorObject(Class)}
* when called via hetelo-list.
* when called via hetero-list.
*
* @param it
* @param it Object to check
* @return true if the target model is {@link MatrixProject}
*/
public boolean isMatrixProject(Object it) {
Expand Down

0 comments on commit e873abb

Please sign in to comment.