Skip to content

Commit

Permalink
fixup! Exclude JsonIgnore PipelineOptions from DisplayData
Browse files Browse the repository at this point in the history
  • Loading branch information
swegner committed May 10, 2016
1 parent 8fe5624 commit d82d1a5
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,8 @@ private void populateDisplayData(DisplayData.Builder builder) {

for (PipelineOptionSpec optionSpec : specs) {
if (!optionSpec.shouldSerialize()) {
// Options that are excluded for serialization (i.e. those with @JsonIgnore) are also
// excluded from display data. These options are generally not useful for display.
continue;
}

Expand Down

0 comments on commit d82d1a5

Please sign in to comment.