Skip to content

Commit

Permalink
bug(objectionary#209): order
Browse files Browse the repository at this point in the history
  • Loading branch information
h1alexbel committed Jan 10, 2025
1 parent c7c96b3 commit 41766e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/org/eolang/lints/Program.java
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ public Program(final XML xml) {
* Find defects possible defects in the XMIR file.
* @return All defects found
* @see <a href="https://news.eolang.org/2022-11-25-xmir-guide.html">XMIR guide</a>
* @see <a href="https://www.eolang.org/XMIR.xsd">XMIR schema</a>
* @see <a href="https://www.eolang.org/XMIR.html">XMIR specification</a>
* @see <a href="https://www.eolang.org/XMIR.xsd">XMIR schema</a>
*/
public Collection<Defect> defects() {
try {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/eolang/lints/Programs.java
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,8 @@ public Programs(final Map<String, XML> map) {
* Find defects possible defects in the XMIR file.
* @return All defects found
* @see <a href="https://news.eolang.org/2022-11-25-xmir-guide.html">XMIR guide</a>
* @see <a href="https://www.eolang.org/XMIR.xsd">XMIR schema</a>
* @see <a href="https://www.eolang.org/XMIR.html">XMIR specification</a>
* @see <a href="https://www.eolang.org/XMIR.xsd">XMIR schema</a>
*/
public Collection<Defect> defects() {
final Collection<Defect> messages = new LinkedList<>();
Expand Down

0 comments on commit 41766e0

Please sign in to comment.