mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-19 01:09:52 +07:00
11 lines
324 B
Java
11 lines
324 B
Java
package com.intellij.codeInsight.unwrap;
|
|
|
|
public class UnwrapSynchronizedTest extends UnwrapTestCase {
|
|
public void testUnwrap() throws Exception {
|
|
assertUnwrapped("synchronized(foo) {\n" +
|
|
" Sys<caret>tem.gc();\n" +
|
|
"}\n",
|
|
|
|
"Sys<caret>tem.gc();\n");
|
|
}
|
|
} |