mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-06-11 00:56:33 +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;
9 lines
143 B
Java
9 lines
143 B
Java
class Test {
|
|
void foo() {
|
|
try {
|
|
// This is comment"
|
|
int i = 1;
|
|
} finally {<caret>
|
|
}
|
|
}
|
|
} |