We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f70843 commit db2fccfCopy full SHA for db2fccf
1 file changed
src/main/java/org/variantsync/diffdetective/variation/diff/transform/EliminateEmptyAlternatives.java
@@ -14,22 +14,22 @@
14
* This transformer simplifies annotations such that empty alternatives do not appear in choices.
15
* This means, that nestings without any siblings such as
16
*
17
- * <pre>
+ * <pre>{@code
18
* #if A
19
* #elif B
20
* #elif C
21
* #else
22
* foo
23
* #endif
24
- * </pre>
+ * }</pre>
25
26
* will be simplified to
27
28
29
* #if !A && !B && !C
30
31
32
33
34
* Annotations without any children also get eliminated.
35
0 commit comments