use CommentTracker.text() with precedence argument

This commit is contained in:
Bas Leijdekkers
2018-01-18 15:19:20 +01:00
parent 28f36903e9
commit f2e6fca603
20 changed files with 109 additions and 203 deletions
@@ -0,0 +1,17 @@
// "Merge sequential 'if's" "true"
class ImplicitOr {
void liability() {
<caret>if /*equivocal*/(true) {
System.out.println();
// atavistic
return;
}
if/*indubious*/ (true) {
System.out.println();
// vestigial
return;
}
}
}