[java, intention] remove unnecessary documentation

GitOrigin-RevId: 5a9e4bf23d68b6733a892de3d795b5d84e9d017a
This commit is contained in:
Aleksey Dobrynin
2023-11-13 16:17:57 +01:00
committed by intellij-monorepo-bot
parent f97829c4d9
commit 2f46b4e9ec
3 changed files with 0 additions and 26 deletions

View File

@@ -1,11 +0,0 @@
public class X {
private boolean flag;
void f() {
if (flag) {
do {
System.out.println("looping");
} while (flag);
}
}
}

View File

@@ -1,9 +0,0 @@
public class X {
private boolean flag;
void f() {
<spot>while</spot>(flag) {
System.out.println("looping");
}
}
}

View File

@@ -1,6 +0,0 @@
<html>
<body>
Replaces a <code>while</code> loop with
an equivalent <code>do-while</code> loop construct.
</body>
</html>