Skip to content

Commit db2fccf

Browse files
committed
fix: javadoc error in EliminateEmptyAlternatives
1 parent 7f70843 commit db2fccf

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/main/java/org/variantsync/diffdetective/variation/diff/transform/EliminateEmptyAlternatives.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,22 +14,22 @@
1414
* This transformer simplifies annotations such that empty alternatives do not appear in choices.
1515
* This means, that nestings without any siblings such as
1616
*
17-
* <pre>
17+
* <pre>{@code
1818
* #if A
1919
* #elif B
2020
* #elif C
2121
* #else
2222
* foo
2323
* #endif
24-
* </pre>
24+
* }</pre>
2525
*
2626
* will be simplified to
2727
*
28-
* <pre>
28+
* <pre>{@code
2929
* #if !A && !B && !C
3030
* foo
3131
* #endif
32-
* </pre>
32+
* }</pre>
3333
*
3434
* Annotations without any children also get eliminated.
3535
*

0 commit comments

Comments
 (0)