mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 22:09:38 +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;
11 lines
306 B
Java
11 lines
306 B
Java
class Test {
|
|
void foo() {
|
|
try {
|
|
// This is comment"
|
|
int i = 1;
|
|
} catch (Exception e) {
|
|
<caret><selection>e.printStackTrace(); //To change body of catch statement use File | Settings | File Templates.</selection>
|
|
} finally {
|
|
}
|
|
}
|
|
} |