Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix JENKINS-5376
- Let AbstractChangesSinceContent and ChangesSinceLastBuildContent have nested content.
  • Loading branch information
slide committed Mar 24, 2012
1 parent b19a265 commit 084cf48
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -114,7 +114,7 @@ public boolean printSpec(StringBuffer buf, char formatChar) {
}

public boolean hasNestedContent() {
return false;
return true;
}

public abstract String getDefaultFormatValue();
Expand Down
Expand Up @@ -96,7 +96,7 @@ public <P extends AbstractProject<P, B>, B extends AbstractBuild<P, B>> String g
}

public boolean hasNestedContent() {
return false;
return true;
}

public class ChangesSincePrintfSpec
Expand Down

0 comments on commit 084cf48

Please sign in to comment.