mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-11 20:07:01 +07:00
1. Java 'surround with' processing is corrected for the first comment statement; 2. Corresponding tests are added; 3. Green cody policy is applied;
8 lines
155 B
Java
8 lines
155 B
Java
class Test {
|
|
void foo() {
|
|
while (<caret><selection>true</selection>) {
|
|
// This is comment"
|
|
int i = 1;
|
|
}
|
|
}
|
|
} |