Skip to content

Commit

Permalink
feat(#850): remove fake data
Browse files Browse the repository at this point in the history
  • Loading branch information
volodya-lombrozo committed Nov 27, 2024
1 parent 0cc6f95 commit e1d67d3
Showing 1 changed file with 0 additions and 25 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -117,16 +117,6 @@ public Iterator<Directive> iterator() {
.add("listing")
.set(this.listing)
.up()
.add("errors")
.add("error").attr("severity", "warning").set(DirectivesProgram.help()).up()
.up()
.add("sheets")
.add("sheet").set(DirectivesProgram.help()).up()
.up()
.add("comments")
.add("comment").attr("line", "42").set(DirectivesProgram.help())
.up()
.up()
.add("license").set(DirectivesProgram.license()).up()
.append(this.metas)
.attr("ms", this.milliseconds)
Expand All @@ -136,21 +126,6 @@ public Iterator<Directive> iterator() {
return directives.iterator();
}

/**
* Help message.
* @return Help message.
*/
private static String help() {
return String.join(
"\n",
"This element was added to pass XSD validation.",
"There is no documentation or explanation as to why this element is required.",
"If you know why this element is required or what should be placed here, please let us know and add the ticket here:",
"https://github.com/objectionary/jeo-maven-plugin/issues",
"We would be happy to fix this."
);
}

/**
* Text of the license.
* @return License text.
Expand Down

1 comment on commit e1d67d3

@0pdd
Copy link

@0pdd 0pdd commented on e1d67d3 Nov 27, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Puzzle 850-88250cdc discovered in src/main/java/org/eolang/jeo/representation/directives/DirectivesProgram.java) and submitted as #909. Please, remember that the puzzle was not necessarily added in this particular commit. Maybe it was added earlier, but we discovered it only now.

Please sign in to comment.