mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-05 01:50:56 +07:00
[java, intention] remove unnecessary documentation
GitOrigin-RevId: 5a9e4bf23d68b6733a892de3d795b5d84e9d017a
This commit is contained in:
committed by
intellij-monorepo-bot
parent
f97829c4d9
commit
2f46b4e9ec
@@ -1,11 +0,0 @@
|
||||
public class X {
|
||||
private boolean flag;
|
||||
|
||||
void f() {
|
||||
if (flag) {
|
||||
do {
|
||||
System.out.println("looping");
|
||||
} while (flag);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,9 +0,0 @@
|
||||
public class X {
|
||||
private boolean flag;
|
||||
|
||||
void f() {
|
||||
<spot>while</spot>(flag) {
|
||||
System.out.println("looping");
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,6 +0,0 @@
|
||||
<html>
|
||||
<body>
|
||||
Replaces a <code>while</code> loop with
|
||||
an equivalent <code>do-while</code> loop construct.
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user