mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-06-19 21:48:01 +07:00
06b56cf449
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
159 B
Java
8 lines
159 B
Java
class Test {
|
|
void foo() {
|
|
do {
|
|
// This is comment"
|
|
int i = 1;
|
|
} while (<caret><selection>true</selection>);
|
|
}
|
|
} |